Print Characters
Lesson 12 of 17 in Coddy's Functions in C course.
Challenge
EasyWrite a function to print each character of a string on a new line.
For example, if the string is "Coddy", the output should be:
C
o
d
d
yTry it yourself
#include <stdio.h>
void printCharsNewLine() {
}