Answer Posted / dhinakar
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
void main()
{
char num;
printf("Enter the number");
scanf("%c",&num);
printf("ASCII of %d is %d\n",atoi(&num),num);
}
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What does printf does?
Explain pointers in c programming?
What is meant by gets in c?
Is there anything like an ifdef for typedefs?
What are predefined functions in c?
What is huge pointer in c?
What is a MAC Address?
What are the different types of errors?
In a switch statement, explain what will happen if a break statement is omitted?
Can math operations be performed on a void pointer?
What are valid operations on pointers?
What are the two types of structure?
What is unsigned int in c?
By using C language input a date into it and if it is right?
Write a program of advanced Fibonacci series.