fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 4;
  5. int b = 4;
  6. int c = 4;
  7. if (a == b == c) printf("True\n");
  8. else printf("False\n");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
False