Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. //w pliku .h
  2. friend ofstream & operator >> (ofstream& os, Konto& k );
  3.  
  4. //w pliku .cpp
  5. friend ofstream& operator >> (ofstream & we, Konto& k )
  6. {
  7.     we >>k.Imie>>k.Nazwisko>>k.numer_k>>k.Saldo<<endl;
  8.        return wyjscie;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement