MCQOPTIONS
Saved Bookmarks
| 1. |
Note:Includes all required header filesusing namespace std; int main () { int l; char * b; ifstream i; i.open ("find.txt", ios :: binary ); i.seekg (0, ios :: end); l = i.tellg(); i.seekg (0, ios :: beg); b = new char [l]; i.read (b, l); i.close(); cout.write (b, l); delete[] b; return 0; } 9.What is the output of this program? |
| A. | course |
| B. | fine |
| C. | Returns fine 2 letter or number from the entered word |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |