c-course/c-basic/hello.c
2025-04-12 22:58:04 +03:00

9 lines
107 B
C

#include <stdio.h>
int hello()
{
printf("Hello C Programming Language 2025 Examples\n");
return 0;
}