Menu
Coddy logo textTech

Count Characters

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

challenge icon

Challenge

Easy

Write a function to count and print the number of characters in a string.

For example, if the string is "Coddy", the output should be: 5

Try it yourself

#include <stdio.h>
void countCharacters() {
  
}

All lessons in Functions in C