1.

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

A. compile time error
B. run time error
C. constructor called
Answer» B. run time error


Discussion

No Comment Found

Related MCQs