What is the output of printf("%d")?
Answer Posted / vinod
It prints the value in the stack.That means the if there is
previous initialisation of values.If there are no
definitions of integer varaibles,it would display the
garbage value.
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do you write a function that can reverse a linked-list?
Write bites in Turbo c++ Header ("Include") Files.
What is the difference between equal to (==) and assignment operator (=)?
Explain about vectors in c ++?
What is vectorial capacity?
why and when we can declar member fuction as a private in the class?
What is function overloading c++?
Please explain class & object in c++?
What can I use instead of namespace std?
Why ctype h is used in c++?
Define a conversion constructor?
What is stream and its types in c++?
Is c++ fully object oriented?
Which bitwise operator is used to check whether a particular bit is on or off?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);