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 are the 10 different models of writing an addition program in C language?
What's the total generic pointer type?
Describe wild pointers in c?
What is a void pointer in c?
What are runtime error?
What does stand for?
What are bitwise shift operators in c programming?
Explain what is the concatenation operator?
What is operator promotion?
Write a program to print fibonacci series using recursion?
Why does notstrcat(string, "!");Work?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is the meaning of && in c?
Is it possible to initialize a variable at the time it was declared?
What are Macros? What are its advantages and disadvantages?