Discussion :: Constructors and Destructors
-
p>What will be the output of the following program?
#include<iostream.h> class FresherGate { int x; public: FresherGate(int xx, float yy) { cout<< char(yy); } }; int main() { FresherGate *p = new FresherGate(35, 99.50f); return 0; }
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment