summaryrefslogtreecommitdiff
path: root/wk1/lect2/phone-book.c
blob: e37fa2b2b0e8ae7282d670a56f88f803e3cf915c (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. Name is %s. Number is %s. \n", age, name, phone);
}