/* * HELLO -- traditional first C program * * Usage: hello * * Inputs: none * Output: prints "hello, world!" on a line * Exit Code: EXIT_SUCCESS (0) because all goes well * * written for ECS 036A, Fall 2019 * * Matt Bishop, Sept. 25, 2019 * original program written */ #include #include /* * main routine * * print "hello, world!" */ int main(void) { /* print the message */ printf("hello, world!\n"); return(0); }