#include int main(void) { printf("Hello World!\n"); const char* str = "Hello %s!\n"; char* second_str = "Clay"; printf(str, second_str); return 0; }