hello-world/c/helloworld.c

7 lines
104 B
C
Raw Normal View History

2024-04-04 19:44:52 +00:00
//compiles and runs successfully
2024-04-04 18:16:41 +00:00
#include<stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}