    C++__________________________________701

while(infile.get(c))

  - get   : 
 s,       delim ( 
   '\').        
 ,     ,  1   -
  ,     .    -
    ,     ,
  .      , 
    (    ). 
,      get  
,        .

          
 :

char s [80] ;

ifstream infile("Test.dat");

iff!infile)
{

ShowMessage("   ");

return;

}

while(!infile.eof())
(

infile.get(s,80) ;

infile.get() ;

//  

)

//  
infile.close() ;

       get  .  -
    \    get    (-
,      80 ).    , 
 

infile.get(s,80) ;

 

infile.get ();

     .    , -
 .

 get      ,  
  ,        
 .       getline.  -
      get    -
     .     get  getline -
     (..      );

      .

  getline        -
    :

while(!infile.eof())
(
infile.get line(s,80) ;

//  