c comments template code example
Example 1: C comment
/* comments in c work like this */
/*they can be one line...*/
/*
...or
multiple
lines
*/
printf("Hello World"); /* you can comment in the same line with code */
Example 2: how to add comment in c
A comment in C starts with
/*
This is a comment, it ends with
*/