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

What are proxy objects in c++?

0 Answers  


Which programming language is best to learn first?

0 Answers  


What is the difference between a pointer and a link in c ++?

0 Answers  


What do c++ programmers do?

0 Answers  


How the keyword struct is different from the keyword class in c++?

0 Answers  


When there is a global variable and local variable with the same name, how will you access the global variable?

0 Answers  


How many standards of c++ are there?

0 Answers  


How does throwing and catching exceptions differ from using setjmp and longjmp?

1 Answers  


How do pointers work?

0 Answers  


How does atoi function work?

0 Answers  


Which software is used to run c++ program?

0 Answers  


Write any small program that will compile in "C" but not in "C++"?

4 Answers  


Categories