hello-world/c/helloworld.c
2024-04-04 21:44:52 +02:00

7 lines
104 B
C

//compiles and runs successfully
#include<stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}