convert a character to uppercase
#include <ctype.h> int toupper( int c ); int _toupper( int c );
The toupper() function converts c to an 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 corresponding uppercase letter when the argument is a lowercase letter; otherwise, the original character is returned.
![]() |
The result of _toupper() is undefined if c isn't a lowercase letter. |
#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
| Safety: | |
|---|---|
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit(), strlwr(), strupr(), tolower()