fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=5, b=5, c=4;
  5. c += a==b;
  6. printf("A=%d B=%d C=%d", a, b, c);
  7.  
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
A=5  B=5  C=5