Games Get link Facebook X Pinterest Email Other Apps - June 15, 2020 Get link Facebook X Pinterest Email Other Apps
Program to cheque enter character is upper case or lower case in c-language Get link Facebook X Pinterest Email Other Apps - April 11, 2020 #include<stdio.h> int main() { char ch; printf("Enter the character\n"); scanf("%c",&ch); if(ch>=65&&ch<=90) { printf("Upper case"); } else if(ch>=97&&ch<=122) { printf("lower case "); } } OUTPUT Enter the character y lower case Get link Facebook X Pinterest Email Other Apps Comments Anonymous25 April 2020 at 20:22Nice program ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
Nice program
ReplyDelete