C-Algorithms-Data_Structures/001-hello_world/main.c

5 lines
63 B
C
Raw Normal View History

2024-06-23 00:19:31 +03:00
#include <stdio.h>
int main() {
printf("Hello World\n");
}