I have a file with multiple strings, each string on a separate line. All strings are 32 character long (so 33 with the \'\\n\' at the end).
I am trying to read all t
It goes something like this:
char str[33]; //Remember the NULL terminator while(!feof(fp)) { fgets(str, 33, fp); printf("%s\n",str); }