types of comments in c++ code example
Example 1: comment in c++
// This is a single one line comment
/*
multiline comment
*/
Example 2: how to add comment in c
A comment in C starts with
/*
This is a comment, it ends with
*/
// This is a single one line comment
/*
multiline comment
*/
A comment in C starts with
/*
This is a comment, it ends with
*/