/*-------------------------------------------------------------------*/ /* hello.c */ /*-------------------------------------------------------------------*/ #include int main(void) /* Write "hello, world\n" to stdout. Return 0 if successful. */ { printf("hello, world\n"); return 0; }