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
How do you list a file’s date and time?
Explain the use of fflush() function?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Write a program to print fibonacci series without using recursion?
What standard functions are available to manipulate strings?
How can I determine whether a machines byte order is big-endian or little-endian?
Where does the name "C" come from, anyway?
What are structure types in C?
Why isnt any of this standardized in c?
Why dont c comments nest?
how can f be used for both float and double arguments in printf? Are not they different types?
What are the standard predefined macros?
using for loop sum 2 number of any 4 digit number in c language
What is modeling?
Why does this code crash?