1 2 3 4 5 6
#include <stdio.h> int print_hello (char *name) { return printf ("Hello %s!\n", (name) ? name : "world"); }