summaryrefslogtreecommitdiff
path: root/wk1/pset1/hello.c
blob: d84046697366d24674411316657e474b52c716de (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <cs50.h>

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