12 lines
277 B
C
12 lines
277 B
C
#include <stdio.h>
|
|
|
|
printf("Hello 1\n");
|
|
printf("Hello 2\n"); /* this is a comment */ printf("Hello 3\n");
|
|
printf("Hello 4\n");
|
|
// this is also a comment sayhello();
|
|
printf("Hello 5\n");
|
|
printf("Hello 6\n"); /* this is a second comment */ printf("Hello 7\n");
|
|
|
|
|
|
void main() {}
|