fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int A = 0;
  5. char B = 128;
  6. int C = 256;
  7.  
  8. if (A=B) puts("A=B");
  9. if (A=C) puts("A=C");
  10. if (B=C) puts("B=C");
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
A=B
A=C