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