CSE MCQs :: C++ - MCQs
-
What is the output of this program?
#include < iostream >
using namespace std;
int main ()
int n;
n = 43;
cout << hex << n << endl;
return 0;
}
- What must be specified when we construct an object of class ostream?