Below code is not exact code. what I try to mean here is fprintf is called many times that adds data to file.Is there by any mean I can control the number writes by increasing buffer size?
FILE *output;
if(output = fopen( szFileNm, "a" ) ) != NULL)
{
for(long i = 0;i<9000000;++i)
fprintf( output, "%ld\n",numLakhs);//assume numLakhs changes for every iteration
}
How do I improve the performance of fprintf in the above code?
Please close the qn since fprintf() works really fast and the question is no more relavent
