basics · beginner · ~15 min
Iterate a C string until the null terminator.
Implement int count_char(const char *s, char c) returning how many times c appears in s.
Counting how many times a character appears in a string is the simplest 'iterate and accumulate' pattern. It's the unit of building histograms, frequency tables, and search counts.
int count_char(const char *s, char c) {
/* TODO */
return 0;
}
Iterating past the NUL (no need — strings end there). Returning int when count could exceed INT_MAX (use size_t). Forgetting case sensitivity if the test cares.
Empty string returns 0. Character is the NUL byte — return 0 by convention (don't count the terminator).
O(n).
Solve this exercise in the browser editor — compile and run against the test harness, no setup required.