fork download
  1. #include <limits.h>
  2. #include <math.h>
  3. #include <stdio.h>
  4.  
  5. int main(void) {
  6. const auto n = 13UL;
  7. const auto Index = n > 0UL ? (unsigned long)log2(n) : ULONG_MAX;
  8.  
  9. printf("MSB is: %u\n", Index); // Prints 3 (zero offset)
  10. }
  11.  
Success #stdin #stdout 0s 4532KB
stdin
Standard input is empty
stdout
MSB is: 3