Commenting Standards for Embedded C Language Coding
What is important when looking at source code? Besides various coding standards, one significant aspect is comments. Although writing comments can be painful, they are crucial for ensuring code readability. Below, we will discuss how and where to comment. Commenting Style 1. Overview Generally, use // or /* */; just ensure consistency. 2. Explanation Both … Read more