Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Character to ASCII in C++

//TO PRINT THE CHAR FOR THE ASCII VALUE
#include<iostream.h>
#include<conio.h>
int main()
{
int a=90;
clrscr();
cout<<(char)a;
getch();
return 0;
}