/**************************************************************************** * hai1.c * * Computer Science 50 * David J. Malan * * Says hello to the world. * * Demonstrates use of printf. ***************************************************************************/ #include int main(void) { printf("O hai, world!\n"); }