🔴 Class 66 : Program to check if input character is in upper case or not

Опубликовано: 05 Октябрь 2024
на канале: Eagles Tech
162
7

#include stdio.h
#include ctype.h
int main()
{
char ch;
printf("Check letter is uppercase or not :\n");
printf("----------------------------------\n");

printf(" Input a character:");
scanf("%c", &ch);

if (isupper(ch))
{
printf("\nLetter is an UPPERCASE letter.\n");
}
else
{
printf("\nLetter is not an UPPERCASE letter.\n");
}
return 0;
}





🔴 Class 66 : Program to check if input character is in upper case or not
🔴 Daily Reel Upload
🔴 Follow to Learn C - Your first step to Programming

Connect with us on Instagram for daily short videos where we help students like you with my programming knowledge so that they can finally grow and scale future in Software, Website & Mobile application development.

#clanguage #clanguageprogramming #cprogramming #cprogramminglanguage