c-course/c-basic/hello.c

9 lines
104 B
C
Raw Normal View History

2025-03-18 13:58:35 +03:00
#include <stdio.h>
int main()
{
printf("Hello C Programming Language 2025 Examples");
return 0;
}