What is the output of printf("%d")?
Answer Posted / mousam sahu
it will give an expression syntax error as printf must have
an expression like ;
| Is This Answer Correct ? | 5 Yes | 22 No |
Post New Answer View All Answers
What are member functions used in c++?
What is abstract class in c++?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
What are the five basic elements of a c++ program?
What is virtual function? Explain with an example
What is the size of integer variable?
Can a program run without main in c++?
What is anonymous object in c++?
Define 'std'.
Do you know about C++ 11 standard?
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 is malloc in c++?
If you don’t declare a return value, what type of return value is assumed?
Explain operator overloading.
What is object in c++ example?