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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:40:59+00:00 2026-06-17T21:40:59+00:00

I want to have a typedef that is 1-bit integer, so I though of

  • 0

I want to have a typedef that is 1-bit integer, so I though of this typedef int:1 FLAG; but I’m getting errors with it, is there a way I can do so?
Thanks

  • 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-17T21:41:00+00:00Added an answer on June 17, 2026 at 9:41 pm

    No.

    The smallest addressable “thing” in a C Program is a byte or char.
    A char is at least 8 bits long.
    So you cannot have a type (or objects of any type) with less than 8 bits.

    What you can do is have a type for which objects occupy at least as many bits as a char and ignore most of the bits

    #include <limits.h>
    #include <stdio.h>
    
    struct OneBit {
        unsigned int value:1;
    };
    typedef struct OneBit onebit;
    
    int main(void) {
        onebit x;
        x.value = 1;
        x.value++;
        printf("1 incremented is %u\n", x.value);
        printf("each object of type 'onebit' needs %d bytes (%d bits)\n",
              (int)sizeof x, CHAR_BIT * (int)sizeof x);
        return 0;
    }
    

    You can see the code above running at ideone.

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

Sidebar

Related Questions

I want to have an insert tab button for my UITextView so that users
Is there a 64 bit type that in every OS(32/64 bit) and for every
I've read plenty of posts about this, but it seems, that my problem is
Say want to store the following: typedef std::function<void(int)> MyFunctionDecl; ..in a collection: typedef std::vector<MyFunctionDecl>
I have a class that I've been provided that I really don't want to
I want to overload the assignment operator for types like int, long etc. That
I want to have an interface ModelGenerator which has a method generate() that takes
I'm trying to resolve this for fun but I'm having a little bit of
i want have an image and i want to set it as a background
I have a UITextView and I want have two buttons. When the user taps

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.