Show Mobile Navigation

Monday, August 27, 2012

Calculate ASCII value of any character

Anonymous - 19:22
#include<stdio.h>
#include<conio.h>
void main()
{
char c;
printf("enter character which ASCII value you want ");
scanf("%c",&c);
printf("\nASCII value of %c : %d",c,c);
getch();
}

0 comments:

Post a Comment

Comments : Read Them Or Add One to promote us