Difference between revisions of "Bit Operations"

From ElectroDragon Wiki
(Created page with "* (c & 0x80 != 0): check if bit 7 is set to 1 or not * 0x80 = 1000 0000 category: Bit")
 
(No difference)

Latest revision as of 01:56, 28 May 2021

  • (c & 0x80 != 0): check if bit 7 is set to 1 or not
  • 0x80 = 1000 0000