code_projects_c/STEP1_Basics/1_Hello_world/main.c
2025-05-04 21:18:37 +03:00

8 lines
73 B
C

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