Answer Posted / rukmanee
#include<stdio.h>
#include<conio.h>
main()
{
int num;
clrscr();
printf("enter a number");
scanf("%d",&num);
printf("the ascii value of the number is %c",num);
getch();
}
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
What is a function simple definition?
Why doesnt this code work?
What do you mean by c what are the main characteristics of c language?
What is c language in simple words?
What is structure padding and packing in c?
What is #include stdio h?
Do you know what are bitwise shift operators in c programming?
What is signed and unsigned?
Write a program to print fibonacci series without using recursion?
What do you mean by a local block?
What is the correct declaration of main?
code for find determinent of amatrix
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What are pointers? What are stacks and queues?