#include void print_msg (void); main() { print_msg(); return 0; } void print_msg(void) { puts( "This is a message to print" ); }