C-Algorithms-Data_Structures/001-hello_world/main.c
Ahmet Kaan GÜMÜŞ f8b61b1508 feat: hello-world
2024-06-23 00:19:31 +03:00

5 lines
No EOL
63 B
C

#include <stdio.h>
int main() {
printf("Hello World\n");
}