fork(5) download
  1. #include <stdio.h>
  2.  
  3. #define HUI(x) { ++x; }
  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.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:9:2: error: 'else' without a previous 'if'
  else
  ^
stdout
Standard output is empty