Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - strupr http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                  strupr

   Usage
   #include <string.h>
   char *strupr(char *string);

   Description
   Converts any lower case characters in string to upper case.

   Example
   #include <stdio.h>
   #include <string.h>
   char *string = "Mixed Case String";
   main()
   {
        printf("strupr Example [%s]\n",strupr(string));
   }

   Return Value
   Returns string.


See Also: strlwr toupper

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