Files
CS50---Harvard/Hayet_Classwork/hello.c
T
2026-05-28 10:16:10 +00:00

8 lines
145 B
C

#include <cs50.h>
#include <stdio.h>
int main(void)
{
string answer = get_string("What's your name? ");
printf("Hello, %s\n", answer);
}