how to print character using ascii value in c++
Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to print character using ascii value in c++ .So let’s go to our topic #include <iostream.h> #include <conio.h> void main() { clrscr(); char charac; cout << “Enter the character : ” << endl; cin>>charac; int num1=charac; cout << “The ASCII … Read more