1 2 3 4 5 6 7 8
#include <stdlib.h> #include <unistd.h> int main(void) { write(1,"hello world\n",12); _exit(42); }