#include #include int main(int argc, char **argv) { const char *msg = "Hello!\n"; write(fileno(stdout), msg, 7); return 0; }