// Prints string char by char #include #include #include int main(void) { string s = get_string("input: "); printf("output: "); for (int i = 0; i < strlen(s); i++) { printf("%c\n", s[i]); } }