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 enumerated data type in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Is printf a keyword?
Which programming language is best for getting job 2020?
What functions are used for dynamic memory allocation in c language?
What are 'near' and 'far' pointers?
Explain #pragma statements.
What is wrong with this code?
What is the benefit of using #define to declare a constant?
Where we use clrscr in c?
If fflush wont work, what can I use to flush input?
What is the hardest programming language?
How would you rename a function in C?
What is a static variable in c?