Guest User

Untitled

a guest
Oct 17th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. while(!feof(f)) { while(!f.eof()) {
  2. fread... или fscanf f.read... или f >>
  3. // работа со считанными данными
  4. } }
  5.  
  6. while((n = fread(buf,1,N,f)) != 0)
  7. {
  8. // работа с данными
Add Comment
Please, Sign In to add comment