1/* comments in c work like this */
2
3/*they can be one line...*/
4
5/*
6...or
7multiple
8lines
9*/
10
11printf("Hello World"); /* you can comment in the same line with code */
1#include stdio.h
2int main(){
3 printf("Only this code will be printed.");
4//This is a single line comment.
5/*
6this is a multiple line
7comment
8*/
9}