fork download
  1. #include <stdio.h>
  2.  
  3. #define sum(b)({\
  4.   int a = 10; \
  5. (a = 0) ? 10 : 5;\
  6. })
  7.  
  8. int main(void) {
  9. // your code goes here
  10.  
  11.  
  12. int c = sum(20);
  13. printf("%d",c);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 4164KB
stdin
Standard input is empty
stdout
5