What is an offset in a hex dump?

2.6k views Asked by At

I'm trying to understand what an offset in a hex dump is. In particular, what purpose does an offset serve? I have googled many times but not found anything.

1

There are 1 answers

3
Kevin On

The offset describes where something is in the file. You can obtain and jump to offsets in code using lseek(2) or fseek(3), depending on which I/O system you're using.