isupper() Test for Uppercase
#include <ctype.h>
int isupper;
int c; Integer value to be tested
isupper() tests if 'c' is uppercase ('A' = 'Z').
Returns: True (nonzero) if the integer satisfies the test
condition or false (zero) if it does not. The result is
undefined if 'c' is other than an ASCII character or EOF.
Notes: isupper() is a macro.
-------------------------------- Example ---------------------------------
The following statement tests whether the character read from a file
is uppercase.
#include <ctype.h>
#include <stdio.h>
int ch;
FILE *stream;
main()
{
if ((stream = fopen("input.dat","r+"))!= NULL) {
while (!feof(stream)) {
if (isupper(ch = getc(stream)))
;
/* process character */
}
}
}
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster