diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-03 05:53:56 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-03 05:53:56 +0000 |
commit | f98197915369ec1388a7d53bf4e87cf463696082 (patch) | |
tree | bdffb27d76269fda1e573322ff7c70513bb8df62 /wk1/lect2/phone-book.c | |
parent | 6a10c33f6e59de7f02fd6c12bce308d3150c5eeb (diff) |
Sat, Dec 2, 2023, 9:53 PM -08:00
Diffstat (limited to 'wk1/lect2/phone-book.c')
-rw-r--r-- | wk1/lect2/phone-book.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wk1/lect2/phone-book.c b/wk1/lect2/phone-book.c new file mode 100644 index 0000000..e37fa2b --- /dev/null +++ b/wk1/lect2/phone-book.c @@ -0,0 +1,10 @@ +#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); +} |