Answer Posted / seshaphani
void main()
{
int num;
printf("Enter the number");
scanf("%d",&num);
printf("ASCII of %d is %d\n",num,itoa(&num));
}
| Is This Answer Correct ? | 9 Yes | 7 No |
Post New Answer View All Answers
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is difference between main and void main?
What are qualifiers?
Explain what is the benefit of using #define to declare a constant?
Why is extern used in c?
What are c identifiers?
What is void c?
What is call by value in c?
What does nil mean in c?
When was c language developed?
Does * p ++ increment p or what it points to?
Describe the difference between = and == symbols in c programming?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Why main is not a keyword in c?
what are enumerations in C