// get_string and printf with %s #include #include int main(void) { string s = get_string("What's your name?\n"); printf("hello, %s\n", s); }