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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!