fork(2) download
  1. #include <stdio.h>
  2.  
  3. #define HUI(x) do { ++x; } while(0)
  4.  
  5. int main(void) {
  6. int pizda = 1, hui = 5;
  7. if(pizda)
  8. HUI(hui);
  9. else
  10. HUI(pizda);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2152KB
stdin
Standard input is empty
stdout
Standard output is empty