Followers

Showing posts with label ASCII CODE. Show all posts
Showing posts with label ASCII CODE. Show all posts

Thursday, December 15, 2011

ASCII CODE TO CHARACTER

#include<iostream.h>
#include<conio.h>

void main()
{
 clrscr();
 int num;
 cout<<"Enter the ASCII code : ";
 cin>>num;
 cout<<"The corresponding character is : "<<char(num);
 getch();
}
.................................................................
OUTPUT:(click to enlarge the image)


Sunday, December 11, 2011

CHARACTER TO ASCII CODE

#include<iostream.h>
#include<conio.h>
char ch;

char asc(char ch)
{
 cout<<"Enter a character : ";
 cin>>ch;
 cout<<"The ASCII code for the given character is : "<<int(ch);
 return 0;
}

void main()
{
  clrscr;
  asc(ch);
  getch();
}
.................................................................
OUTPUT:(click to enlarge the image)