Which of the following lines represents a data member?
1. class animal 2. { 3. public: 4. animal(); 5. void fetch(); 6. private: 7. char bone; 8. }
Line 7
Line 3
Line 6
Line 5
Line 1
Which of the following header statements allow you to omit using the std:: when using cout?
using namespace std;
#include
You don't need a header statement.