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