Why doesn't C have rotate left/right operators?
- by icepack
A bit of a philosophical question, I suppose. Hope it belongs here.
C language has the standard set of bit-wise operations, including OR, AND, XOR, SHIFT LEFT/RIGHT, NOT. Anyone has an idea why rotate left/rotate right isn't included in the language? These operators are of the same complexity as other bit-wise operators and normally require a…