What is the output of printf("%d")?
Answer Posted / beloshe vinod
Output will depends on number of values(local variables)
pushed onto stack .Out of that top of stack will gets printed
e.g.
static int a=89;
int b=67;
printf("%d");
will result in :> 67
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
what is Member Functions in Classes?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
What is math h in c++?
Can non graphic characters be used and processed in C++?
What is the difference between the compiler and the preprocessor?
What happens when you make call 'delete this;'?
what is oops and list its features in c++?
What is implicit pointer in c++?
Explain the volatile and mutable keywords.
What is a down cast?
What are the implicit member functions of class?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
What do you mean by function overriding & function overloading in c++?
What is meant by const_cast?