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 null pointer in c?
Write a program which returns the first non repetitive character in the string?
write a program to generate address labels using structures?
What is pointer to pointer in c?
Do you know null pointer?
Write the syntax and purpose of a switch statement in C.
What is the difference between scanf and fscanf?
What is c++ used for today?
what is the structure pointer?
Write a c program to demonstrate character and string constants?
What is the difference between constant pointer and constant variable?
What are the application of c?
write a program to copy the string using switch case?
Explain zero based addressing.
Explain how do you generate random numbers in c?