Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Program to display ASCII Code...

Easiest program to Print any character ASCII Code.
first user have to insert a valid character for its ascii code






Source Code:-

#include <iostream.h>
#include<conio.h>
void main()
{       clrscr();
char ascii;
cout << "Give character: ";
cin >> ascii;
cout << "Its ascii value is: "<< (int) ascii ;
cout<< "\n Created bt Tarun Rawat " ;
       getch();
}






No comments:

Post a Comment

Blogger Widgets

Find Us On Google, Just type - way2cplusplus -

If you have any questions on implementing or understanding this C++ Program , shoot me a comment and I'll be glad to help! :) :)