Advertisement
Sajib_Ahmed

Untitled

Feb 18th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main()
  5. {
  6. char ch;
  7. scanf("%c",&ch);
  8. if(ch>='A'&&ch<='Z'){
  9. printf(" is upper case");}
  10. else{printf(" is lower case");}
  11.  
  12.  
  13.  
  14.  
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement