Powered by Blogger.

Saturday, January 19, 2013

Print The Respective ASCII Values

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>


void main()
{
clrscr();
char a;
printf("Enter the ascii character:\n");
scanf("%c",&a);
printf("%d",a);
getch();
}

0 comments:

Post a Comment