/**************************************************************************** * hello3.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[]) { string name; printf("State your name: "); name = GetString(); printf("hello, %s\n", name); }