fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4. #include <inttypes.h>
  5.  
  6. int main(void) {
  7. int8_t v = strtol("10010110", NULL, 2);
  8. int8_t i;
  9. for(i = 1; INT8_MIN + i < v; ++i)
  10. ;
  11. printf("Ans.%" PRId8 "\n", i);
  12. }
Success #stdin #stdout 0s 10304KB
stdin
Standard input is empty
stdout
Ans.22