fork download
  1. #include <stdint.h>
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. // your code goes here
  6. uint32_t begin = 0xffffffff;
  7. uint32_t end = 0xff;
  8.  
  9. printf("begin: %u\n", begin);
  10. printf("end: %u\n", end);
  11. printf("diff: %u\n", end - begin);
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
begin: 4294967295
end:   255
diff: 256