What is the output of printf("%d")?
Answers were Sorted based on User's Feedback
Answer / kumar
it was compiled in dev c++
prints a value 31783972
| Is This Answer Correct ? | 14 Yes | 39 No |
Answer / priya
the output of printf("%d") is create a blankspace
| Is This Answer Correct ? | 11 Yes | 61 No |
How do I download c++?
what are Access specifiers in C++ class? What are the types?
What are register variables?
Write about c++ storage classes?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What does extern mean in a function declaration in c++?
How static variables and local variablesare similar and dissimilar?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What do you mean by volatile and mutable keywords used in c++?
Explain friend class?
Write a program which uses Command Line Arguments
What are the manipulators in c++?