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 do you mean by c?
What is the difference between array and linked list in c?
What is keyword in c?
Is c pass by value or reference?
Write a program to show the change in position of a cursor using c
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is wrong with this declaration?
What is the difference between test design and test case design?
What is a structure in c language. how to initialise a structure in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is union and structure?
What is getch() function?
Explain how can you avoid including a header more than once?
Differentiate Source Codes from Object Codes
Write program to remove duplicate in an array?