Answer Posted / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
char n;
printf("enter the character:");
scanf("%c",&n);
printf("the ascii value %c is %d",n,n);
getch();
}
Is This Answer Correct ? | 53 Yes | 16 No |
Post New Answer View All Answers
What are the advantages of the functions?
Is sizeof a keyword in c?
Write a program to show the change in position of a cursor using c
What is graph in c?
What is difference between stdio h and conio h?
i want to know the procedure of qualcomm for getting a job through offcampus
Explain two-dimensional array.
Is c is a procedural language?
What is && in c programming?
What are types of structure?
What is the hardest programming language?
Explain how do you print an address?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Is it possible to pass an entire structure to functions?
If null and 0 are equivalent as null pointer constants, which should I use?