fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. static uint32_t uints[6];
  5.  
  6. int main() {
  7. // your code goes here
  8. uint32_t* fifth = &uints[5];
  9. uint32_t* second = &uints[2];
  10. size_t const dist = fifth - second;
  11. printf("%zu", dist);
  12. return 0;
  13. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
3