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
Why does everyone say not to use gets?
Which function in C can be used to append a string to another string?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What are pointers? Why are they used?
Explain two-dimensional array.
Is c is a low level language?
Write a program to print factorial of given number without using recursion?
Explain Function Pointer?
What is the right way to use errno?
Explain how do you determine the length of a string value that was stored in a variable?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How do you determine a file’s attributes?
List out few of the applications that make use of Multilinked Structures?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Why is main function so important?