c-course/c-basic/hello.c

9 lines
104 B
C

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