fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3. #include <math.h>
  4.  
  5. int main(void) {
  6. uint8_t pid_to_bres = round((10 * 43) / 100.0);
  7.  
  8. printf("pid_to_bres: %u\n", pid_to_bres);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5632KB
stdin
Standard input is empty
stdout
pid_to_bres: 4