I know my file pointer is at end of the line after printing this string: "xyz".

How can I get it to the start of the line? (pointing to x)

offset = ftell(fp);
fseek(fp, offset - sizeof("xyz") , SEEK_SET);

Above doesn't seem to work.

How can I achieve that?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

I would store the offset by issuing a beginning = ftell(fp) before reading/writing you "xyz". Then fseek(fp, beginning, SEEK_SET);

Would this be possible?

link|improve this answer
feedback

sizeof("xyz") will return 4 since you have the three characters plus the terminating null. You should use strlen("xyz") instead or subtract one from the sizeof result to account for the null.

link|improve this answer
1  
+1: correct on sizeof() – Heath Hunnicutt Mar 16 '11 at 17:58
feedback

As the type of "xyz" is char const *, sizeof("xyz") will return the size of a standard pointer, typically 4 or 8.

Also note that fseek does not work in text mode, only if the file has been opened in binary mode, as it's not possible to tell how big newlines are on the underlying host system.

In addition, it's better to use SEEK_CUR, as it will more the read/write point relative to the current position.

link|improve this answer
No, the type is const char[]. David Paxson got the value resulting from sizeof() correct. – Heath Hunnicutt Mar 16 '11 at 17:56
No const in the type of string literals ... – pmg Mar 16 '11 at 18:32
Of course. Now that you mentioned it, I remember actually using it (when trying to write the worlds smallest Hello World program in C on the Amiga, some 15, 20 years ago). – Lindydancer Mar 16 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.