Mega Code Archive

 
Categories / C++ / File
 

Displays the contents of a file beginning with the location you specify on the command line

#include <iostream> #include <fstream> #include <cstdlib> using namespace std;     int main(int argc, char *argv[]) {   char ch;       if(argc!=3) {     cout << "Usage: SHOW <filename> <starting location>\n";     return 1;   }       ifstream in(argv[1], ios::in | ios::binary);   if(!in) {     cout << "Cannot open file.";     return 1;   }       in.seekg(atoi(argv[2]), ios::beg);       while(in.get(ch))     cout << ch;       return 0; }