#include #include int main() { char str1[] = "Hello "; char str2[] = "World\n"; printf("%s", str1); sleep(3); printf("%s", str2); return 0; }