Menu
Coddy logo textTech

Print Characters

Lesson 12 of 17 in Coddy's Functions in C course.

challenge icon

Challenge

Easy

Write 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
y

Try it yourself

#include <stdio.h>

void printCharsNewLine() {
   
}

All lessons in Functions in C