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