Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9237553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:33:37+00:00 2026-06-18T07:33:37+00:00

So. I have been experimenting with fwrite(). On my system sizeof( int ) =

  • 0

So. I have been experimenting with fwrite().

On my system sizeof( int ) = 4.
I have an array of ints that contains: 1, 2, 3, 4, 5 and 6.

When i write it to a binaryfile and view it with hexdump I get:

0000000 0001 0000 0002 0000 0003 0000 0004 0000
0000010 0005 0000 0006 0000                    
0000018

Whats does it write zeroes between the 4byte values?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T07:33:38+00:00Added an answer on June 18, 2026 at 7:33 am

    I think you’re misunderstanding how big a byte is in your output – 8 bits require two hexadecimal digits to be completely represented. One single int from your example is:

    0001 0000
    

    You might want to display as 32-bit data (or 8-bit data) rather than 16. That’s what makes your dump look weird.

    I duplicated your binary file and ran od with a few different options. Hopefully you find the example enlightening:

    $ od -t x4 example
    0000000          00000001        00000002        00000003        00000004
    0000020          00000005        00000006                                
    0000030
    $ od -t x2 example 
    0000000      0001    0000    0002    0000    0003    0000    0004    0000
    0000020      0005    0000    0006    0000                                
    0000030
    $ od -t x1 example 
    0000000    01  00  00  00  02  00  00  00  03  00  00  00  04  00  00  00
    0000020    05  00  00  00  06  00  00  00                                
    0000030
    

    As you can see best from the 1- and 4-byte examples, I’m also on a little-endian machine, like you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been experimenting with writing applications that use a local SQL Database to
I have been experimenting with using javascript to dynamically write stylesheets. In Firefox, one
I have been experimenting with Objective-C using GCC + GNUstep on an Ubuntu system.
I have been experimenting in CakePHP with links and noticed that sometimes you just
I have been experimenting with a jquery script that I found on the following
I have been experimenting with Firefox's Audio API to detecting silence in audio. (The
I have been experimenting with a lot of web development apps like Drupal, Moodle,
I have been experimenting with sending messages from two .NET Windows Forms applications using
I have been experimenting with TMask in Delphi 2010 and it seems to work
I have been experimenting some problems with the fully distributed version. First of all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.