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
pierrot's divisor program using c or c++ code
When a c file is executed there are many files that are automatically opened what are they files?
What are file streams?
What are the 4 data types?
What are keywords in c with examples?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
How can I handle floating-point exceptions gracefully?
write a progrmm in c language take user interface generate table using for loop?
What is a memory leak? How to avoid it?
What is printf () in c?
What is binary tree in c?
How can I generate floating-point random numbers?
When should a type cast not be used?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Is calloc better than malloc?