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