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
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What is the use of this pointer in c++?
What is different in C++, compare with unix?
What is the difference between a reference and a pointer?
How do you add an element to a set in c++?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
Which bit wise operator is suitable for turning off a particular bit in a number?
Evaulate: 22%5 a) 2 b) 4 c) 0
What you know about structures in C++?
Is java made in c++?
What is stoi in c++?
What is the difference between equal to (==) and assignment operator (=)?
what is upcasting in C++?
What is #include cstdlib in c++?
List the merits and demerits of declaring a nested class in C++?