Alx09

Untitled

May 1st, 2020
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6. int n = 0, v[100000];
  7. FILE *f;
  8. f = fopen("in.txt", "r"); //deschidere in mod citire fiser
  9.  
  10. while (fscanf(f, "%d", &v[n++]) != EOF);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment