/* Write a function int count_first_upper that has one parameter, size, the number of strings to read. The function reads size strings and counts and returns the number of strings that starts with upper case letters. Write main to test your function. */ #include #define SIZE_STR 20 int count_first_upper(int); int main(){ int size; printf("enter size\n"); scanf("%d",&size); if(size>0) printf("the number string with first uppercase is %d\n",count_first_upper(size)); else printf("invalid input\n"); return 0; } int count_first_upper(int size){ char str[SIZE_STR]; int i,count=0; printf("enter %d strings\n", size); for(i=0;i='A' && str[0]<='Z') count++; } return count; }