multiline comments in c code example
Example 1: comment in c++
// This is a single one line comment
/*
multiline 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
*/