fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. size_t n = 5;
  6. while(n--)
  7. printf("%zu ",n);
  8. printf("\n");
  9. printf("%zu\n",n);
  10. }
  11.  
Runtime error #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
4 3 2 1 0 
4294967295