You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
494 B
C++

Program to Print Some Special Characters.
Program is compiled in Visual C++ 6.0. If you have this
one then compile it and you can see the codes of the some special
characters which are not available on keyboard.........
#include<iostream.h>
void main()
{cout<<" xAA xAB xAC xAD xAE xAF
";
cout<<" xBA xBB xBC xBD xBE xBF
";
cout<<" xCA xCB xCC xCD xCE xCF
";
cout<<" xDA xDB xDC xDD xDE xDF
";
cout<<" xEA xEB xEC xED xEE xEF
";
cout<<" xFA xFB xFC xFD xFE xFF
";
}