2006-10-05 18:15:24 UTC
char str[81];
I fill it up by reading in characters from a file, and, when I move to the next line in the file, I want to empty out all of those characters to fill it up again, with new characters.
Will adding a '\0' after the last character in the second set of characters have the same effect as re-initializing the array? Is there a better way?