Answers

Question and Answer:

  Home  C++ Operator Overloading

⟩ The output of this program? #include <iostream> using namespace std; ostream & operator<<(ostream & i, int n) { return i; } int main() { cout << 5 << endl; cin.get(); return 0; } a) 5 b) 6 c) error d) runtime error

c) error

 176 views

More Questions for you: