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?



C++ program output? Explain output of this program. #include <iostream> using std::cout; u..

Answer / guest

0x8f94036c0x8f940346

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C++ General Interview Questions

Explain register storage specifier.

0 Answers  


Can I have a reference as a data member of a class? If yes, then how do I initialise it?

0 Answers  


Hi i need to Acess a variable "int Intval" in the below mentioned code .How to Access it guys i am waiting for your reply

3 Answers  


What are the different operators in C++?

3 Answers   HP,


What do you mean by call by value and call by reference?

1 Answers  






What is pointer to member?

0 Answers  


Specify different types of decision control statements?

0 Answers  


What is an inclusion guard?

0 Answers  


Differentiate between structure and class in c++.

0 Answers  


What is an accessor in c++?

0 Answers  


Is java a c++?

0 Answers  


How to implement flags?

2 Answers   Symphony,


Categories