/* * "Hello world" program: Prints "hello, world" to standard output. */ #include int main(void) { printf("hello, world\n"); return 0; }