fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i=6;
  5.  
  6. for(--i; --i; i--)
  7.  
  8. {
  9.  
  10. printf("%d",i);
  11.  
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
42