Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to C and I have this code:

f = fopen( argv[1], "rb" );
fseek( f, 64, SEEK_SET );
fpos_t pos;
fgetpos (f, &pos);
printf("%x", pos);

However, this returns 40, even though it's supposed to be returning 64. What am i doing wrong?

share|improve this question
1  
For one thing, is there actually 64 bytes in the file you're testing this with? – John Chadwick May 5 '11 at 12:15
What is the length of the file you are opening? – Liv May 5 '11 at 12:16

5 Answers

up vote 2 down vote accepted

Because you're using %x. It's saying 40 as in 0x40, the hexadecimal number. You need %i or %d to get a decimal number.

share|improve this answer
Oops, feel stupid lol. thanks and the others too. – Hosh Sadiq May 5 '11 at 12:22

You are outputting 64 in hex format, "%x". Since 64=0x40, the mystery is solved!

share|improve this answer

4 * 16 is 64

share|improve this answer

whatever you are printing is in hex format. 40 in decimal is 64. Do you mean the file size is 0x64 or 0x40

share|improve this answer

fpos_t is not (necessarily) an arithmetic type and cannot be used with printf. An implementation could even store it as a structure containing an encrypted position if it liked. Use ftell (or ftello if available) to get the file offset in a meaningful numeric form. fgetpos is largely useless.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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