This commit is contained in:
2026-06-07 17:56:47 +00:00
parent 67b7ced5ba
commit 59aed7c741
8 changed files with 38 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <cs50.h>
int main(void)
{
string answer = get_string("What's your name? ");
printf("hello, %s\n, answer);
}