Question: Write a function to determine the number of digits in the input string. The function prototype is given as the following: int countDigits(string s); Hint:
Write a function to determine the number of digits in the input string. The function prototype is given as the following:
int countDigits(string s);
Hint: you can use isdigit(...) to check if a character is digit(0-9) or not.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
