How we can add commnets in C?
Comments in C
Two types of comments.
1. /* */2. //
#include <stdio.h>
/* This is a comment ignored by the compiler */
int main() /* This is another comment ignored by the compiler */
{
printf("comments ");
}
//One Line Comments