

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program given below: class A { Public : A(int a=0) { cout<< new A ; } }; A a; A b; A c; |
A. | New A new A new A |
B. | NewAnewAnewA |
C. | New Anew Anew A |
D. | New A new Anew A |
Answer» D. New A new Anew A | |