Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main() {
- int n = 0, v[100000];
- FILE *f;
- f = fopen("in.txt", "r"); //deschidere in mod citire fiser
- while (fscanf(f, "%d", &v[n++]) != EOF);
- }
Advertisement
Add Comment
Please, Sign In to add comment