Question d’entretien chez Intel Corporation

reverse a byte

Réponse à la question d'entretien

Utilisateur anonyme

6 avr. 2015

BYTE n = ValueToReverse... n = ((n >> 1) & 0x55) | ((n > 2) & 0x33) | ((n > 4) & 0x0f) | ((n << 4) & 0xf0);