/**************************************************************************** * hello.c * * Computer Science 50 * David J. Malan * * Says hello to the world. ***************************************************************************/ #include int main(int argc, char * argv[]) { printf("hello, world\n"); }