cs-self-learning/Cprogramming/hello_world.c
2023-05-26 08:45:03 +00:00

8 lines
No EOL
77 B
C

#include <stdio.h>
int main() {
printf("Hello world");
return 0;
}