Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ v10.0 : C library - <b>synopsis:</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <ctype.h>
    int toupper( int c );

Description:
    The toupper function converts a lowercase character to the corresponding
    uppercase character.

Returns:
    The toupper function returns the corresponding uppercase letter when the
    argument is an lowercase letter; otherwise, the original character is
    returned.

See Also:
    isalnum, isalpha, iscntrl, isdigit, isgraph, islower, isprint, ispunct,
    isspace, isupper, isxdigit, strlwr, _fstrlwr, strupr, _fstrupr, tolower

Example:
    #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 following:

    A 5 $ Z

Classification:
    ANSI

Systems:
    All

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson