the problem is very simple, i have a for loop and i have to generate files 1.txt, 2.txt 3.txt... n.txt.
FILE *target;
for(i=0; i<100; i++) {
target = fopen(i . ".txt","w" //here comes the problem
fclose(target);
}
i thank you in advance, lorenzo
FILE *target;
for(i=0; i<100; i++) {
target = fopen(i . ".txt","w" //here comes the problem
fclose(target);
}
i thank you in advance, lorenzo