What is the output of printf("%d")?
Answer Posted / anita sachdeva
it will print nothing
| Is This Answer Correct ? | 27 Yes | 68 No |
Post New Answer View All Answers
What is the c++ code?
Explain the difference between using macro and inline functions?
What is the difference between c++ and turbo c++?
Which bitwise operator is used to check whether a particular bit is on or off?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What do you mean by stack unwinding in c++?
what are function pointers?
Why is c++ called oops?
What are friend classes?
What are special characters c++?
Differentiate between a constructor and a method in C++.
How do you differentiate between overloading the prefix and postfix increments?
Is there a c++ certification?
What is conditions when using boolean operators?
Can non-public members of another instance of the class be retrieved by the method of the same class?