Computer Science, asked by ayushbajpai7856, 9 months ago

A function to check whether the character is in uppercase or lowercase ​

Answers

Answered by WalkingDeath
1

c Program to Check Whether Character is Uppercase or Not without using Library function

  • int main() { char ch;
  • printf("\nEnter The Character : "); scanf("%c", &ch);
  • if (ch >= 'A' && ch <= 'Z') printf("Character is Upper Case Letters");

Similar questions