automated commit by check50 [check50=True]

This commit is contained in:
kukemuna 2024-02-20 21:56:33 +02:00
commit 8a7594f5af
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);
}