# include
using namespace std;

int main( )
{
	int i;

//	Print out part of the ASCII character set.
//	Note this 7-bit code contains definitions for 
//	32 control characters (0-31) and 96 printable characters (32-12).

	for (i=32; i<= 127; i++)
		cout << i << " " << static_cast(i) << endl;

//	perform addition with characters

	cout << endl;
	cout << static_cast('a'+3);
	cout << endl;

	return 0;
}

    Source: geocities.com/vuumanj/Cpp

               ( geocities.com/vuumanj)