Monday, July 31, 2017

Convert case in C / C++

C
 <ctype.h>
tolower
int tolower( int ch );
toupper
int toupper( int ch );

C++
<cctype>
std::tolower
int tolower( int ch );
std::toupper
int toupper( int ch );

No comments:

Post a Comment