Answer Posted / thiyanesh
#include<stdio.h>
void main()
{
char num ;
printf("enter the number: ");
scanf("%c",&num);
printf("the ascii value of %c is %d",num,num);
return 0;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is formal argument?
Write a program to swap two numbers without using third variable in c?
Why calloc is better than malloc?
What is .obj file in c?
Is c still relevant?
find out largest elemant of diagonalmatrix
What is 1f in c?
Write a program to check prime number in c programming?
How can I remove the trailing spaces from a string?
Explain how can you be sure that a program follows the ansi c standard?
Describe how arrays can be passed to a user defined function
What are header files why are they important?
What is the auto keyword good for?
What is preprocessor with example?
What is use of null pointer in c?