Showing posts with label c program. Show all posts
Showing posts with label c program. Show all posts

Friday, December 30

//c program for ascii value of a character//


#include
void main()
{
int a;
printf("ENTER THE CHARACTER\n");
a=getchar();
printf("THE ASCII VALUE OF CHARACTER is %d\n",z);
}