summaryrefslogtreecommitdiff
path: root/wk1/phone-book.c
blob: b0c5a9d2dee9a61f8429dcc9ef69a5b0b221bed8 (plain)
1
2
3
4
5
6
7
8
9
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. \nName is %s. \n Number is %s. \n", age, name, phone);
}