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
What is the use of define in c?
find out largest elemant of diagonalmatrix
What is hashing in c?
Explain the bubble sort algorithm.
Here is a good puzzle: how do you write a program which produces its own source code as output?
Can you tell me how to check whether a linked list is circular?
Explain what is the general form of a c program?
How many levels of pointers have?
What is return type in c?
What is a MAC Address?
Why do we use header files in c?
Differentiate fundamental data types and derived data types in C.
What is c preprocessor mean?
How many types of functions are there in c?
Write a program to print "hello world" without using a semicolon?