Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C Programming
Usage of Hext Dump in C programming
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Darrell Grainger, post: 2381853"] A hex dump is a utility to display the contents of memory or a file in a grid of hexidecimal values. It typically has something like: OFFSET: 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF OFFSET: 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF OFFSET: 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF OFFSET: 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF Where OFFSET is the offset from start of the file or it is a memory address. The rest of the information is the hexidecimal values at those locations. It is useful for examining binary data. If I am using something like fread and fwrite to read and write structures, I can do a hex dump to examine the data and see what it looks like. It is a fast way to see if some of the data is not getting generated properly. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C Programming
Usage of Hext Dump in C programming
Top