View Code of Problem 25

#include <stdio.h>
int main(){
  char c;
  int n;
  int i;
  for(i=1;i<=n;i++){
  
  scanf("%d",&c);
  if('c'<90&&'c'>65)
  	printf("%c",c+32);
  
  else if('c'<122&&'c'>97)
   printf("%c",c);
}
}

Double click to view unformatted code.


Back to problem 25