InterviewSolution
Saved Bookmarks
| 1. |
How we can insert comments in a C program? |
|
Answer» Comments are an AMAZING way to insert remarks in a program that can serve as a reminder of what a given program is all about. Get more knowledge of this topic if you are preparing for Interview QUESTIONS on C. You can also add a DESCRIPTION of why a certain function or code was placed in the first place. Comments begin with /* and end by */ characters. Comments can be single or several lines and can be placed anywhere in the C program. |
|