Answer Posted / rukmanee
#include<stdio.h>
#include<conio.h>
main()
{
int num;
clrscr();
printf("enter a number");
scanf("%d",&num);
printf("the ascii value of the number is %c",num);
getch();
}
Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
What is an example of structure?
Can i use “int” data type to store the value 32768? Why?
Write a program to reverse a given number in c language?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is the size of enum in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Why c is called a middle level language?
What is a structure member in c?
Is int a keyword in c?
What's the difference between constant char *p and char * constant p?
Describe the order of precedence with regards to operators in C.
Explain what are linked list?
What is graph in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What are the different file extensions involved when programming in C?