fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned topCopy = 127;
  5. printf("%u\n", -topCopy % topCopy);
  6. printf("unsigned int size: %lu\n", sizeof(unsigned));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
16
unsigned int size: 4