Guest User

Untitled

a guest
May 28th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. fscanf(file,"%d",&intVar);
  2. fgets(buf,buflen,file);
  3.  
  4. inputStream >> intVar;
  5. inputStream.getline(buf,buflen);
  6.  
  7. inputStream.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
  8.  
  9. while(fgetc(file) != 'n');
  10.  
  11. fscanf(file,"%*[^n]");
  12. fscanf(file,"%*c");
Add Comment
Please, Sign In to add comment