I am reading a file of the following form:
c h a r a c t e r s
with fscanf:
fscanf(file, "%c", address);
in a loop. Will it read spaces as well? I want to ignore spaces. Should I use
fscanf(file, "%c ", address);
instead? However, there is no space after the last character in line, so I'm thinking it wouldn't read the last char as it is not in "x " for but "x".
I cannot check because the program is not finished enough yet.