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