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 | 10 No |
Post New Answer View All Answers
Explain how can I avoid the abort, retry, fail messages?
Is null a keyword in c?
What is the use of c language in real life?
Is fortran still used in 2018?
What does s c mean in text?
How can I sort more data than will fit in memory?
What is data structure in c and its types?
How would you rename a function in C?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Why do we need a structure?
What is signed and unsigned?
Explain do array subscripts always start with zero?
What is the difference between procedural and declarative language?
What is %g in c?
What is pragma c?