diff options
Diffstat (limited to 'wk1/lect1/phone-book.c')
-rw-r--r-- | wk1/lect1/phone-book.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/wk1/lect1/phone-book.c b/wk1/lect1/phone-book.c deleted file mode 100644 index e37fa2b..0000000 --- a/wk1/lect1/phone-book.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <stdio.h> -#include <cs50.h> - -int main(void) -{ - string name = get_string("What's your name? "); - int age = get_int("What's your age? "); - string phone = get_string("What's your phone number? "); - printf("Age is %i. Name is %s. Number is %s. \n", age, name, phone); -} |