bot50 2024-02-20 19:56:36 +00:00
commit 36d08c2d2f
1 changed files with 8 additions and 0 deletions

8
hello.c Normal file
View File

@ -0,0 +1,8 @@
#include <cs50.h>
#include <stdio.h>
int main(void)
{
string name = get_string("What's your name? ");
printf("hello, %s\n", name);
}