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 is meant by type specifiers?
What is 1d array in c?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the use of typedef in c?
What is bubble sort technique in c?
Can you subtract pointers from each other? Why would you?
What is static function in c?
all c language question
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Explain bit masking in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the use of function overloading in C?
When should a type cast be used?
Explain is it valid to address one element beyond the end of an array?