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
What is the correct declaration of main?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why do we use header files in c?
What is the use of sizeof?
Is exit(status) truly equivalent to returning the same status from main?
What is the auto keyword good for?
What is line in c preprocessor?
What is the condition that is applied with ?: Operator?
What is the difference between procedural and functional programming?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Explain what is page thrashing?
Is there anything like an ifdef for typedefs?
What is modifier & how many types of modifiers available in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Explain do array subscripts always start with zero?