fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. if(({
  6. int a = 1;
  7. int b = 2;
  8. a + b == 3;
  9. })) {
  10. printf("Yes, it's 3!");
  11. }
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
Yes, it's 3!