InterviewSolution
Saved Bookmarks
| 1. |
C Comments |
|
Answer» C COMMENTS (1)Single Line CommentsHere in Single Line Comments which is REPRESENTED by double slash . In below EXAMPLE we have given example for single line comments.![]() Output:- Hello Welcome Here in above code we can also add comments in single line with code too as given below ![]() (2)Multi Line CommentsHere we will write multi line comments which is represented by slash asterisk * ..... * . Here this will occupy many lines of code. But it will not have nested syntax.![]() Output:- Hello Welcome |
|