Multi line comment in C code example
Example 1: comment c
// single-line comment
/*
multi-line
comment
*/
Example 2: multi line comment c
/* this is how
you comment multiple lines
in c
*/
Example 3: how to add comment in c
A comment in C starts with
/*
This is a comment, it ends with
*/