const char* message = "This is on standard output\n"; write(1, message, strlen(message)); const char* newmessage = "This is on standard error\n"; write(2, newmessage, strlen(newmessage));