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