What are comments and how do you insert it in a C program?
4 years ago
C Programming
Comments are a great way to put some remarks or description in a program. It can serves as a reminder on what the program is all about, or a description on why a certain code or function was placed there in the first place. Comments begin with /* and ended by */ characters. Comments can be a single line, or can even span several lines. It can be placed anywhere in the program.
Sanisha Maharjan
Jan 20, 2022