+ 1
What will happen if this line #include<iostream > removed from program !
c++
2 Antworten
+ 5
iostream is a default library in C++. If you are not using amything from that library, it wouldnt make any difference in your results of the code.
+ 1
That depends. If the program is using classes and objects defined and included in the iostream header file then your program will fail to compile. If your program uses nothing brought in by iostream then your program will run fine.