Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
uint8_t div3(uint8_t x) { uint8_t a = x; x >>= 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1) + 1) >> 1; return x >> 1; }
--
uint8_t div3(uint8_t x) { uint8_t a = x; x >>= 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1)) >> 1; x = (a + (x >> 1) + 1) >> 1; return x >> 1; }