c-course/c-basic/main.c
Mert Gör 01b39949c2
Some checks failed
ci/woodpecker/push/build Pipeline failed
hello.c included in main.c and compiled successfully
2025-06-16 21:23:44 +03:00

10 lines
81 B
C

#include <stdio.h>
#include "hello.c"
int main()
{
hello();
return 0;
}