Question 4

Code:
  #include <iostream>
Question: Referring to the sample code above, which of the following could you use to make the standard I/O stream classes accessible without requiring the scope resolution operator?
  1. using iostream ;
  2. using namespace iostream ;
  3. using namespace std ;
  4. using namespace std::iostream ;
  5. using std::iostream ;



Leo Liberti 2008-01-12