#include #include #include #undef errno extern int errno; int main(int argc, char** argv) { char str[] = "Hello World!!!\n"; write(1, str, strlen(str)); printf("Hello from printf!!!\n"); return errno; }