summaryrefslogtreecommitdiff
path: root/wk1/lect1/ask.c
blob: 39a3910b5aa4f6428a43ac7611f7195420af5f0a (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <cs50.h>

int main(void)
{
    string first = get_string("What's your first name? ");
    char middle = get_char("What's your middle INITIAL? ");
    string last = get_string("What's your last name? ");
    printf("Hello, %s %c %s\n", first, middle, last);
}