/**************************************************************************** * string1.c * * David J. Malan * malan@harvard.edu * * Prints a given string one character per line. * * Demonstrates strings as arrays of chars and use of strlen. ***************************************************************************/ #include #include #include int main(void) { // get line of text string s = GetString(); // print string, one character per line for (int i = 0; i < strlen(s); i++) { char c = s[i]; printf("%c\n", c); } return 0; }