/**************************************************************************** * hello2.c * * Computer Science 50 * David J. Malan * * Says hello to just David. * * Demonstrates use of CS 50's library. ***************************************************************************/ #include #include int main(int argc, char * argv[]) { string name = "David"; printf("hello, %s\n", name); }