I am new to c, but I would like to read in text from a file. I don't know the length of the first line of the file, so how can I write the correct parameters for the fgets function? Right now I have:
char read[30]; // but I really don't know how long the line will be
while(fgets(read, sizeof(read), fp).......
sizeof()is perfectly good here. He wants the storage size of the buffer, not the length of the string inside. In fact, it's uninitialized sostrlen()would be dangerous. – Ben Jackson Feb 7 '11 at 18:39