diff options
Diffstat (limited to 'ask.c')
-rw-r--r-- | ask.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ -#include <stdin.h> -# +#include <stdio.h> +#include <cs50.h> int main(void) { string ans = get_string("What's your name? "); - printf(ans); + printf("Hello, %s\n", ans); } |