Find the ASCII value of a number
# include<stdio.h>
# include<conio.h>
void main()
{
char input;
printf(enter an input to get ascii of input);
scanf(%c,&input);
printf(n ascii of input %c is %d,input,input);
getch();
}
Comments
Post a Comment