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

Discuss the possibilities related to the termination of a program before entering the mainq method?

0 Answers  


How is data hiding achieved in c++?

0 Answers  


What does new do in c++?

0 Answers  


What are the uses of static class data?

0 Answers  


why we cant create array of refrences

4 Answers  


Write a note about the virtual member function?

0 Answers  


What is the use of endl in c++?

0 Answers  


What is the iunknown interface?

0 Answers  


What is expression parser in c++

0 Answers   Mphasis,


Which format specifier is used for printing a pointer value?

0 Answers  


Write a program to calculate the BMI of a person using the formula BMI = weight/height2.

2 Answers  


What does scope resolution operator do?

0 Answers  


Categories