Character Type Functions Get link Facebook X Pinterest Email Other Apps Source code:#include<stdio.h>#include<ctype.h>int main(){ char ch; scanf("%c", &ch); if(islower(ch)) printf("%c",toupper(ch)); else printf("%c",tolower(ch)); return 0;} Comments
Comments
Post a Comment