/**************************************************************************** * hai3.c * * Computer Science 50 * David J. Malan * * Says hello to whomever. * * Demonstrates use of CS 50's library and standard input. ***************************************************************************/ #include #include int main(int argc, char *argv[]) { printf("State your name: "); string name = GetString(); printf("O hai, %s!\n", name); }