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 are Operators and explain with an example?
What are c++ variables?
Implement stack operations with pointers with appropriate exception checks.
What is malloc in c++?
When is the copy constructor called?
Define a conversion constructor?
write a programme to get a character and thier ASCII value
Explain Text Manipulation Routines?
What are stacks? Give an example where they are useful.
What is the difference between equal to (==) and assignment operator (=)?
What is encapsulation in C++? Give an example.
What is meant by entry controlled loop?
Who invented turbo c++?
How to allocate memory dynamically for a reference?
What is the difference between new() and malloc()?