char ch=10;printf("%d",ch);what is the output
Answer Posted / vaibhav
it prints the ascii value of 10. inthese case ineger 10
will occupy only 1 byte.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain argument and its types.
How do you convert strings to numbers in C?
Why does everyone say not to use gets?
How do I determine whether a character is numeric, alphabetic, and so on?
Explain what are binary trees?
How to find a missed value, if you want to store 100 values in a 99 sized array?
By using C language input a date into it and if it is right?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is the difference between null pointer and wild pointer?
What is the difference between malloc() and calloc() function in c language?
Why doesn't C support function overloading?
How to get string length of given string in c?
Explain why C language is procedural?
Which is better malloc or calloc?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.