Answer Posted / dhinakar
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
void main()
{
char num;
printf("Enter the number");
scanf("%c",&num);
printf("ASCII of %d is %d\n",atoi(&num),num);
}
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What functions are used in dynamic memory allocation in c?
What is the difference between a function and a method in c?
What is a node in c?
Explain Basic concepts of C language?
What is the right type to use for boolean values in c?
Is it better to use a macro or a function?
What is this infamous null pointer, anyway?
Why can’t we compare structures?
How do c compilers work?
What is the use of sizeof?
Tell us something about keyword 'auto'.
What does node * mean?
What is the function of volatile in c language?
What is the role of this pointer?
What is data structure in c language?