1.

Output of following program?#includeusing namespace std;class Point { Point() { cout << "Constructor called"; }}; int main(){ Point t1; return 0;}

A. Compiler Error
B. Runtime Error
C. Constructor called
D. None of the above
Answer» B. Runtime Error


Discussion

No Comment Found