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 difference between class and unio?
Difference between constant pointer and pointer to a constant.
Why do we use & in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is the value of uninitialized variable in c?
What does char * * argv mean in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is pointers in c with example?
Can a local variable be volatile in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Why should I use standard library functions instead of writing my own?
what are the advantages of a macro over a function?
What is time null in c?
What does c value mean?
What are the different types of C instructions?