convert a character to uppercase
#include <ctype.h> int toupper( int c ); int _toupper( int c );
The toupper() function converts c to a uppercase letter if c represents a lowercase letter.
The _toupper() function is a version of toupper() to be used only when c is known to be lowercase.
The toupper() function returns the corresponding uppercase letter when the argument is a lowercase letter; otherwise, the original character is returned.
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit(), strlwr(), strupr(), tolower()
#include <stdio.h>
#include <ctype.h>
char chars[] = {
'a',
'5',
'$',
'z'
};
#define SIZE sizeof( chars ) / sizeof( char )
void main()
{
int i;
for( i = 0; i < SIZE; i++ ) {
printf( "%c ", toupper( chars[ i ] ) );
}
printf( "\n" );
}
produces the output:
A 5 $ Z
All (except DOS/PM)