InterviewSolution
Saved Bookmarks
| 1. |
Would The Following Code Work? #include<iosteram.> Void Main( ) { Ostream O ; O << "dream. Then Make It Happen!" ; } |
|
Answer» No This is because we cannot CREATE an OBJECT of the iostream class since its CONSTRUCTOR and COPY constructorare declared private. No This is because we cannot create an object of the iostream class since its constructor and copy constructorare declared private. |
|