7 lines
115 B
C
7 lines
115 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("Hello World!\n");
|
||
|
printf("Hello again, World!\n");
|
||
|
return 0;
|
||
|
}
|