On 11/24/10 6:56 PM, Vitaliy Margolen wrote:
On 11/24/2010 12:23 PM, jimportal@gmail.com wrote:
From: James Ederjimportal@gmail.com
- while (fgets(line,200,f) != NULL)
- while (fgets(line,450,f) != NULL)
You might as well then change this to "sizeof(line)".
Just for my edification, is there not a better way then setting the variable line to a flexible length for this purpose. This might prevent 'growing' the variable over time.
James McKenzie