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
How is computer programming useful in real life?
how to access grid view row?
What are static and dynamic type checking?
What is the difference between prefix and postfix versions of operator++()?
When to use “const” reference arguments in a function?
why is iostream::eof inside a loop condition considered wrong?
Explain the use of this pointer?
Can char be a number c++?
What is the exit function in c++?
When are exception objects created?
Explain the purpose of the keyword volatile.
What is the difference between function overloading and operator overloading?
Explain container class.
What is the use of this pointer in c++?
Can class objects be passed as function arguments?