Convert lowercase to uppercase or vice versa

Input: aLAMiN
Output: AlamIn


  1. #include<stdio.h>
  2. #include<string.h>
  3. void main()
  4. {
  5.     char str[100];
  6.     char ch;

  7.     int len;
  8.     printf("Input the string: ");
  9.     gets(str);
  10.     len=strlen(str);

  11.     for(int i=0; i<len; i++) {
  12.         ch = (islower(str[i])?toupper(str[i]):tolower(str[i]));
  13.     printf("%c", ch);
  14.     }
  15. }

একটি মন্তব্য পোস্ট করুন