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