Count Characters
Lesson 13 of 17 in Coddy's Functions in C course.
Challenge
EasyWrite 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() {
}