c-course/c-basic/hello.c
2024-10-29 10:05:48 +03:00

8 lines
76 B
C

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