Mega Code Archive

 
Categories / C++ Tutorial / File Stream
 

Ignore up to 10 characters or until first space is found

#include <iostream> #include <fstream> using namespace std; int main() {   ifstream in("test");   if(!in) {     cout << "Cannot open file.\n";     return 1;   }   in.ignore(10, ' ');   char c;   while(in) {     in.get(c);     if(in) cout << c;   }   in.close();   return 0; }