C++ program output?
Explain output of this program.
#include <iostream>
using std::cout;
using std::cin;
int main() {
cout<<cout<<'
';
cout<<cin;
return 0;
}
It prints some address in hexadecimal. what is it?
Answer Posted / guest
0x8f94036c0x8f940346
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is boyce codd normal form in c++?
Differentiate between a constructor and a method in C++.
How can you say that a template is better than a base class?
What do you mean by a template?
Ask to write virtual base class code?
Can notepad ++ run c++?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
What is the role of static keyword for a class member variable?
Can java be faster than c++?
Explain function overloading and operator overloading.
What are shallow and deep copies?
What is the use of default constructor?
What is ctime c++?
Explain the difference between static and dynamic binding of functions?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass