Input: aLAMiN
Output: AlamIn
- #include<stdio.h>
- #include<string.h>
- void main()
- {
- char str[100];
- char ch;
- int len;
- printf("Input the string: ");
- gets(str);
- len=strlen(str);
- for(int i=0; i<len; i++) {
- ch = (islower(str[i])?toupper(str[i]):tolower(str[i]));
- printf("%c", ch);
- }
- }
একটি মন্তব্য পোস্ট করুন