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 7722071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:04:58+00:00 2026-06-01T04:04:58+00:00

GIven the fact that I generate a string containing 0 and 1 of a

  • 0

GIven the fact that I generate a string containing “0” and “1” of a random length, how can I write the data to a file as bits instead of ascii text ?

Given my random string has 12 bits, I know that I should write 2 bytes (or add 4 more 0 bits to make 16 bits) in order to write the 1st byte and the 2nd byte.

Regardless of the size, given I have an array of char[8] or int[8] or a string, how can I write each individual group of bits as one byte in the output file?

I’ve googled a lot everywhere (it’s my 3rd day looking for an answer) and didn’t understand how to do it.

Thank you.

  • 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-01T04:04:59+00:00Added an answer on June 1, 2026 at 4:04 am

    You haven’t said what API you’re using, so I’m going to assume you’re using I/O streams. To write data to the stream just do this:

    f.write(buf, len);
    

    You can’t write single bits, the best granularity you are going to get is bytes. If you want bits you will have to do some bitwise work to your byte buffer before you write it.

    If you want to pack your 8 element array of chars into one byte you can do something like this:

    char data[8] = ...;
    char byte = 0;
    for (unsigned i = 0; i != 8; ++i)
    {
        byte |= (data[i] & 1) << i;
    }
    f.put(byte);
    

    If data contains ASCII ‘0’ or ‘1’ characters rather than actual 0 or 1 bits replace the |= line with this:

    byte |= (data[i] == '1') << i;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given Java's write once, run anywhere paradigm and the fact that the Java tutorials
Previously we had desktop applications but given the fact that accessing the server (either
I'm wondering how you'd recommend designing a class, given the fact that XNA Framework
I found this snippet of code that generates a string of random characters. But
Given a package, how can I automatically find all its sub-packages?
Given an interface or interfaces, what is the best way to generate an class
I'm writing a program that uses FileSystemWatcher to monitor changes to a given directory,
I've been given some XML files that don't quite have a proper schema (I
Is there a way to convert a HTML string into a Image .tiff file?
To generate dependency files I can use something like this to generate dependency files:

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.