Thread: C Bitwise Operation..

  1. #1
    Registered User
    Join Date
    Oct 2010
    Posts
    7

    Cool C Bitwise Operation..

    Hi All,

    This is my first post in this board..(^_). I want to start this thread to show how we can deal with data type's bits shift right, shift left, &, + and much more..

    This will support whoever wants to deal with Finite Field or do bitwise operation in general..

    Let’s start by providing some useful links for beginners:


    Binary Operators

    Low Level Operators and Bit Fields

    Bitwise operations

    18.2.1: Bitwise Operators

    Bitwise AND, OR, XOR and NOT Operators and Bit Masks

    https://developer.mozilla.org/en/Jav...wise_Operators

    ......

    If you are interested, read the above links to get a general idea and in my next post, I will try to explain the covered topics in those links.

    So, enjoy and please give me your first feedback about this thread...

    Bye .. Bye for now..

  2. #2
    Registered User Char*Pntr's Avatar
    Join Date
    Sep 2007
    Location
    Lathrop, CA
    Posts
    198
    Quote Originally Posted by ahmedBanihammad View Post
    Hi All,

    This is my first post in this board..(^_). I want to start this thread to show how we can deal with data type's bits shift right, shift left, &, + and much more..

    This will support whoever wants to deal with Finite Field or do bitwise operation in general..

    Let’s start by providing some useful links for beginners:


    Binary Operators

    Low Level Operators and Bit Fields

    Bitwise operations

    18.2.1: Bitwise Operators

    Bitwise AND, OR, XOR and NOT Operators and Bit Masks

    https://developer.mozilla.org/en/Jav...wise_Operators

    ......

    If you are interested, read the above links to get a general idea and in my next post, I will try to explain the covered topics in those links.

    So, enjoy and please give me your first feedback about this thread...

    Bye .. Bye for now..
    Nice links, but what do they have to do with this forum (C code)?

  3. #3
    Registered User
    Join Date
    Oct 2010
    Posts
    7

    Thumbs down

    I thought this forum is to share any C programming related topics..!

    Sorry..

  4. #4
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >I thought this forum is to share any C programming related topics..!
    It's most often used for Q&A. If you post random stuff that could easily be found with a web search, some people would see that as polluting the forum. I'd say that unsolicited sharing of knowledge isn't a bad thing, but keep in mind that each thread you create will push another thread to page 2[*], and do so judiciously. You don't want to be the sole reason somebody fails to get help with their problem, right?

    [*] Nobody looks at page 2, so being pushed down to page 2 is the kiss of death for a thread.
    My best code is written with the delete key.

  5. #5
    Registered User Char*Pntr's Avatar
    Join Date
    Sep 2007
    Location
    Lathrop, CA
    Posts
    198

    Smile

    Quote Originally Posted by Prelude View Post
    >I thought this forum is to share any C programming related topics..!
    It's most often used for Q&A. If you post random stuff that could easily be found with a web search, some people would see that as polluting the forum. I'd say that unsolicited sharing of knowledge isn't a bad thing, but keep in mind that each thread you create will push another thread to page 2[*], and do so judiciously. You don't want to be the sole reason somebody fails to get help with their problem, right?

    [*] Nobody looks at page 2, so being pushed down to page 2 is the kiss of death for a thread.
    I thought the links were great! In fact I'll be bookmarking them. But as you already pointed
    out, this info would be much easier to find when it's in the right area. :-)

    And welcome to the board, ahmedBanihammad!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Bitwise operation; flag look up
    By emptythought in forum C Programming
    Replies: 22
    Last Post: 09-08-2010, 06:48 AM
  2. Compiling C in Visual Studio 2005
    By emanresu in forum C Programming
    Replies: 3
    Last Post: 11-16-2009, 04:25 AM
  3. Replies: 5
    Last Post: 12-04-2008, 08:15 PM
  4. Bitwise operation problem
    By cunnus88 in forum C++ Programming
    Replies: 9
    Last Post: 10-25-2008, 01:49 PM
  5. Bitwise operation
    By Justice in forum C Programming
    Replies: 4
    Last Post: 02-09-2008, 09:06 PM