InterviewSolution
Saved Bookmarks
| 1. |
Are The Standard Library I/o Functions Still Available For Use With The C++ Iostreams Library? |
|
Answer» Yes, using #include functions such as printf() and scanf() will continue to be AVAILABLE. HOWEVER, using them in CONJUNCTION with stream ORIENTED functions can lead to UNPREDICTABLE behaviour. Yes, using #include functions such as printf() and scanf() will continue to be available. However, using them in conjunction with stream oriented functions can lead to unpredictable behaviour. |
|