Comments in C
Types of Comments
1. Single-Line Comments (//)
//)int main() {
// This is a single-line comment
printf("Hello, World!\n");
return 0;
}2. Multi-Line Comments (/* */)
/* */)/*
This is a multi-line comment.
It can span multiple lines.
*/
int main() {
printf("Hello, World!\n");
return 0;
}