Write a program to accept a character & display its
corrosponding ASCII value & vice versa?
Answer Posted / govindkrishna
#include<stdio.h>
#include<conio.h>
main()
{
char ch;
printf("enter any charecter %c /n");
scanf("%c ",&ch);
printf("the ACSCII value is %d= /n",ch);
}
| Is This Answer Correct ? | 61 Yes | 30 No |
Post New Answer View All Answers
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
How many types of arrays are there in c?
Explain pointers in c programming?
What are the storage classes in C?
How can I insert or delete a line (or record) in the middle of a file?
What does dm mean sexually?
Can one function call another?
What are the two types of structure?
Create a simple code fragment that will swap the values of two variables num1 and num2.
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Explain can static variables be declared in a header file?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
How we can insert comments in a c program?
Dont ansi function prototypes render lint obsolete?