header 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: commenting in c
#include stdio.h
int main(){
printf("Only this code will be printed.");
//This is a single line comment.
/*
this is a multiple line
comment
*/
}