May 2003
Intermediate to advanced
808 pages
32h 24m
English
toupper function template — Converts a character to uppercase in a locale
template <typename charT>
charT toupper(charT c, const locale& loc);The toupper function
converts the character c to
uppercase using the locale loc:
use_facet<ctype<charT> >(loc).toupper(c)
Read now
Unlock full access