Guest User

Untitled

a guest
Nov 20th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. if ( myfileopen == 0 )
  2. {
  3. int myfileopen = 1 ;
  4. ifstream reader( "c:\myprograms\test.txt" ) ;
  5.  
  6. if ( ! reader )
  7. {
  8. cout << "Error opening input file" << endl ;
  9. //return -1 ;
  10. }
  11.  
  12. }
Add Comment
Please, Sign In to add comment