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 programming language should I learn first?
What do you mean by function and operator overloading in c++?
Can we use this pointer in a class specific, operator-overloading function for new operator?
What does new do in c++?
Explain queue. How it can be implemented?
How can you quickly find the number of elements stored in a static array?
What is a linked list in c++?
What is a string example?
What is using namespace std in cpp?
How do you decide which integer type to use?
Explain the difference between c++ and java.
Is std :: string immutable?
How do I tokenize a string in c++?
Explain the differences between private, public and protected and give examples.
Is atoi safe?