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