printf("%d",(printf("Hello")); What it returns?
Answer Posted / milan
it will return hello5,firstly the inner printf executes
print the hello and return the number of characters printed
that is 5 which get printed by outer printf...
More info at:
http://clanguagestuff.blogspot.com/2011/02/what-printf-returns.html
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is pivot in c?
What is use of #include in c?
Is it possible to execute code even after the program exits the main() function?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Can you write the function prototype, definition and mention the other requirements.
What are data structures in c and how to use them?
What is the size of array float a(10)?
Does * p ++ increment p or what it points to?
What is meant by type casting?
What is #line in c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain how can I manipulate strings of multibyte characters?
What is scope rule of function in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are the uses of a pointer?