1 2 3 4 5 6 7
extern void print_message(const char* const Message); int main(int argc, char* argv[]) { print_message("Howdy, World!\n"); return 0; }