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

Submitted by: Administrator
c) error
Submitted by:

Read Online C++ Operator Overloading Job Interview Questions And Answers