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