Me gustaría hacer algo como esto: en un ciclo, la primera iteración escribe algo de contenido en un archivo llamado archivo0.txt, segunda iteración archivo1.txt y así sucesivamente, simplemente aumente el número.¿Cómo cambiar dinámicamente el nombre del archivo mientras se escribe en un bucle?
FILE *img;
int k = 0;
while (true)
{
// here we get some data into variable data
file = fopen("file.txt", "wb");
fwrite (data, 1, strlen(data) , file);
fclose(file);
k++;
// here we check some condition so we can return from the loop
}
+1 for 'snprintf' over' sprintf'. –