write a program for upper case, Lower case and digits in c language
Answers
Answered by
0
Answer:
Please make me brainlist.
Explanation:
int main() { ...
gets(text); //here, we are printing string using printf. ...
printf("\nEntered string is: %s\n",text); ...
countL=countU=countS=0; ...
if((text[i]>='A' && text[i]<='Z') || (text[i]>='a' && text[i]<='z')) ...
countU++; ...
countL++; ...
printf("\nSpecial characters: [ %d ]\n",countS);
Similar questions