mirror of https://github.com/me50/kukemuna.git
9 lines
142 B
C
9 lines
142 B
C
|
|
#include <cs50.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
string name = get_string("What's your name? ");
|
||
|
|
printf("hello, %s\n", name);
|
||
|
|
}
|