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