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
What is the stack in c?
Explain what is a static function?
What is wrong in this statement?
Write a code of a general series where the next element is the sum of last k terms.
What is the difference between the local variable and global variable in c?
What are categories used for in c?
Do you have any idea how to compare array with pointer in c?
Which one would you prefer - a macro or a function?
What is declaration and definition in c?
How can you invoke another program from within a C program?
How was c created?
How do you sort filenames in a directory?
What is getche() function?
What do mean by network ?
What is variable declaration and definition in c?