/* hello_single.c - a single threaded hello world program */ #include #define NUM 5 main() { void print_msg(char *); print_msg("hello"); print_msg("world\n"); } void print_msg(char *m) { int i; for(i=0 ; i