blob: 5d42da587d8000500004dd6f57d68f1e98872953 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stdio.h>
#include <cs50.h>
int main(void)
{
string first = get_string("What's your first name? ");
string last = get_string("What's your last name? ");
printf("Hello, %s %s\n", first, last);
}
|