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