Answer Posted / babitha
# include<stdio.h>
# include <conio.h>
void main()
{
char input;
printf("enter an input to get ascii of input");
scanf("%c",&input);
printf("\n ascii of input %c: is %d",input,input);
getch();
}
| Is This Answer Correct ? | 39 Yes | 19 No |
Post New Answer View All Answers
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the difference between arrays and pointers?
How can you tell whether a program was compiled using c versus c++?
explain what are pointers?
develop algorithms to add polynomials (i) in one variable
find out largest elemant of diagonalmatrix
Why does not c have an exponentiation operator?
What is the difference between text files and binary files?
Explain the bubble sort algorithm.
explain what is a newline escape sequence?
What does the characters “r” and “w” mean when writing programs that will make use of files?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Which driver is a pure java driver
Explain what is the difference between #include and #include 'file' ?
Write a code to generate a series where the next element is the sum of last k terms.