-->
Showing posts with label ascii value. Show all posts
Showing posts with label ascii value. Show all posts

program to know ascii value

// program to know ascii value
#include<stdio.h>
#include<conio.h>
void main()
{
char a;
a=getchar();
printf("its ascii value=%d",a);
getch();
}