#include #include "hello.h" int main(int argc, char * argv[]) { sayHello(); return 0; } void sayHello() { printf("Hello\n"); }