c-course/c-basic/hello.c
2024-02-19 04:41:09 +03:00

6 lines
No EOL
81 B
C

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