Question: this program counts the number of upper case letters in the command line argument specified by the user. Complete the code below, writing a recursive
this program counts the number of upper case letters in the command line argument specified by the user. Complete the code below, writing a recursive solution for caps.
#include#include #include int caps(char *str) { // code goes here } int main(int argc, char *argv[]) { printf("%s has %d capital letters ", argv[1], caps(argv[1]) ); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
