fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int a=0,b=1;
  6.  
  7. if( a++ || b++ )
  8.  
  9. {
  10.  
  11. printf("Hello");
  12.  
  13. }
  14.  
  15. printf("HAi");
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
HelloHAi