Header file:
ctype.h
Synopsis:
int isupper (int c)
Description:
Checks whether the given input is an uppercase character or not.
Return Value:
TRUE(non-zero) on success
0 on failure
isupper function C example
#include<stdio.h>
#include<ctype.h>
int main() {
char a;
printf("Enter a character:");
a = getchar();
if(isupper(a))
printf("The given character is in upper case\n");
else
printf("The given character is not in upper case\n");
printf("Return value from isupper:%d\n", isupper(a));
return 0;
}
#include<ctype.h>
int main() {
char a;
printf("Enter a character:");
a = getchar();
if(isupper(a))
printf("The given character is in upper case\n");
else
printf("The given character is not in upper case\n");
printf("Return value from isupper:%d\n", isupper(a));
return 0;
}
Output:
Enter a character:A
The given character is in upper case
Return value from isupper:256
The given character is in upper case
Return value from isupper:256
Do you need Finance? Are you looking for Finance? Are you looking for finance to enlarge your business? We help individuals and companies to obtain finance for business expanding and to setup a new business ranging any amount. Get finance at affordable interest rate of 3%, Do you need this finance for business and to clear your bills? Then send us an email now for more information contact us now via (financialserviceoffer876@gmail.com) whats-App +918929509036 Dr James Eric Finance Pvt Ltd Thanks
ReplyDelete