c-course/c-basic/hello.c
Mert Gör bde2e44f89
All checks were successful
ci/woodpecker/push/build Pipeline was successful
a better hello example implemented
2025-06-16 21:32:07 +03:00

5 lines
96 B
C

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