Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define FILE_ISBNS "isbns.txt"
- int main(int argc, char *argv[])
- {
- if(argc < 3)
- {
- printf("Modo de uso: %s <Cantidad de ISBNS> <Longitud ISBN>\n", argv[0]);
- return 0;
- }
- FILE *archivo_isbns;
- archivo_isbns = fopen(FILE_ISBNS, "w+");
- if (archivo_isbns == NULL)
- {
- perror("Error al crear archivo de ISBNS.\n");
- return -1;
- }
- for(int i=0; i<atoi(argv[1]); i++)
- {
- for(int x=0; x<atoi(argv[2]); x++) {fprintf(archivo_isbns, "%i", rand() % 10);}
- fprintf(archivo_isbns, "\n");
- }
- printf("\nHECHO!\n");
- fclose(archivo_isbns);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement