/** * hello-2.c * * David J. Malan * malan@harvard.edu * * Says hello to whomever. * * Demonstrates use of CS50's library and standard input. */ #include #include int main(void) { printf("State your name: "); string name = GetString(); printf("hello, %s\n", name); }