1#include <stdio.h>
2/*Using a one line comment */
3
4/** This is a
5* multiline comment
6*/
7
8int main(){
9 /* print the words 'Hello world!'
10 * \n : stands for new line character
11 */
12
13 printf("Hello world!\n");
14 return 0;
15}
16