14. Program to Find ASCII Value of a Character Get link Facebook X Pinterest Email Other Apps - August 26, 2015 Get link Facebook X Pinterest Email Other Apps Comments Unknown2:13 PM//Program for conveting characters into ASCII values#include#includevoid main(){char c;clrscr();printf("Enter a character to be converted to ASCII values=\t");scanf("%c",&c);printf("ASCII value of %c = %d",c,c);getch();}ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
//Program for conveting characters into ASCII values
ReplyDelete#include
#include
void main()
{
char c;
clrscr();
printf("Enter a character to be converted to ASCII values=\t");
scanf("%c",&c);
printf("ASCII value of %c = %d",c,c);
getch();
}