Files
c-course/c-basic/hello.c
2025-04-12 22:53:01 +03:00

9 lines
105 B
C

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