fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 20, b = -1, c = -1;
  5. a<=20? (b=10) : (c=30);
  6. printf("b=%d, c=%d\n", b, c);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
b=10, c=-1