comment is not exicute in c why?? code example
Example 1: comment c
// single-line comment
/*
multi-line
comment
*/
Example 2: how to add comment in c
A comment in C starts with
/*
This is a comment, it ends with
*/
// single-line comment
/*
multi-line
comment
*/
A comment in C starts with
/*
This is a comment, it ends with
*/