#include const char hello[] = "hello, world\n"; int main() { write(1, hello, sizeof hello - 1); return 0; }