Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. void funkcja(FILE *zmienna1, FILE *zmienna2)
  2. {
  3.     //tu se cos robi funkcja na *zmiennej1 i *zmiennej2
  4. }
  5. int main( )
  6. {
  7. FILE *file1,*file2;
  8. //itp
  9.  
  10. //wczytac fopenem pliki do file1 file2
  11. //albo wywolac funkcje ktora to zrobi xd
  12.    funkcja( &file1, &file2 );
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement