c-course/c-basic/hello.c
Mert Gör 92130c44dc
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
hello with make
2025-04-12 22:58:04 +03:00

8 lines
107 B
C

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