Thread: Bitset in C

  1. #1
    Registered User
    Join Date
    Aug 2022
    Posts
    1

    Bitset in C

    Do we have a bitset like Library in C, that can help us do bit manipulation?

  2. #2
    Registered User
    Join Date
    Feb 2019
    Posts
    1,078
    Yep, it is called bitwise logical operators.

  3. #3
    Registered User rstanley's Avatar
    Join Date
    Jun 2014
    Location
    New York, NY
    Posts
    1,111
    Quote Originally Posted by computerlab.hl View Post
    Do we have a bitset like Library in C, that can help us do bit manipulation?
    If you are attempting to learn from painfully inadequate online tutorials, YouTube videos, or some book claiming to teach you in a short time, then THROW THEM AWAY!

    Short of taking a course in C Programming from a qualified instructor, you need to study a good book on the C Programming Language, cover to cover, and do all the exercises at the end of each chapter! This would give you all the information on bitwise operators, and more.

    Choose one of the three listed below:

    C Programming, A Modern Approach
    Author: K. N. King
    C Programming: A Modern Approach - Second Edition


    C Primer Plus, 6th Edition
    Stephen Prata
    C Primer Plus


    C How to Program, 8/e
    C How to Program, 8/e | Deitel & Associates, Inc.

  4. #4
    'Allo, 'Allo, Allo
    Join Date
    Apr 2008
    Posts
    639
    Quote Originally Posted by rstanley View Post
    If you are attempting to learn from painfully inadequate online tutorials, YouTube videos, or some book claiming to teach you in a short time, then THROW THEM AWAY!

    Short of taking a course in C Programming from a qualified instructor, you need to study a good book on the C Programming Language, cover to cover, and do all the exercises at the end of each chapter! This would give you all the information on bitwise operators, and more.
    I know right, can you believe the cheek of the OP? He probably watches TV shows in colour as well.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. How to bitset in C?
    By Zacariaz in forum C Programming
    Replies: 17
    Last Post: 05-29-2015, 09:24 AM
  2. Bitset
    By Kristyy_mariee in forum C++ Programming
    Replies: 2
    Last Post: 03-03-2012, 09:00 AM
  3. Bitset help
    By Kristyy_mariee in forum C++ Programming
    Replies: 1
    Last Post: 03-02-2012, 10:33 PM
  4. bitset + memcpy
    By KBriggs in forum C++ Programming
    Replies: 7
    Last Post: 08-14-2009, 01:04 PM
  5. errors with bitset
    By Marksman in forum C++ Programming
    Replies: 11
    Last Post: 07-12-2006, 12:15 PM

Tags for this Thread