ASCII Value program
ASCIIValue program Output
Copy Text from below
#include<stdio.h>
#include<conio.h>
int main()
{
char chr; //Character type variable
printf("Enter any alphabet for ASCII value ");
scanf("%c",&chr);
printf(" ASCII value of %c is %d ",chr,chr);
}
For more Program :
Download pdf file :
0 Comments
Post a Comment