Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. https://www.infoarena.ro/job_detail/491113?action=view-source
  2.  
  3. #include <stdio.h>
  4.  
  5. #define infile "sort4.în"
  6. #define outfile "sort4.out"
  7.  
  8. FILE *fin, *fout; // inainte de main
  9.  
  10. fin = freopen(infile, "r", stdin); // main
  11. fout = freopen(outfile, "w", stdout);
  12.  
  13.  
  14. // citire si print
  15. scanf("%d", &n);
  16. printf("%d ", n);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement