Q. Output of following program?
Code:
#include<iostream>
using namespace std;
class Point {
Point() { cout << "Constructor called"; }
}; int main()
{
Point t1;
return 0;
}
β
Correct Answer: (C)
Compiler Error