1 #include <stdio.h> 2 #include "hello.h" 3 hello(const char * name)4 void hello(const char * name) 5 { 6 printf ("Hello %s!\n",name); 7 } 8