/* File: hello.c Print 'Hello, world' on the screen. */ #include int main() { printf("Hello, world\n"); return 0; }