// Prints string char by char, one per line, using strlen, remembering string's length #include #include #include int main(void) { string s = get_string("Input: "); printf("Output: "); for (int i = 0, n = strlen(s); i < n; i++) { printf("%c", s[i]); } printf("\n"); }