what do ~= and ^= mean in C

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hkhan20
    New Member
    • Mar 2010
    • 1

    what do ~= and ^= mean in C

    Hi,

    I'm new to C programming and was just looking though some example code. i wanted to know what do ~= and ^= mean in C?

    please help.

    Thanks

    Huda
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    They are the assignment versions of the bitwise NOT ~ and bitwise XOR ^ operators.

    All the operators should be clearly explained in your text/course book or Wikipedia as a passable reference for them.

    Comment

    Working...