int isupper(int chr);
tests wheather a char is in uppercase
===== cpp Sourcecode Example =====
#include /* including standard library */
#include
#include
using namespace std;
int main ( void )
{
int i;
string str="Test -!&%1";
for (i=0; i <= 11;i++)
{
if ( isupper(str[i]) != 0 )
{
cout << "Character " << i << " is uppercase" << endl;
}
}
return 0;
}
==== output ====
output:
Character 0 is uppercase