fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i = 10;
  5. if (10 == i) {
  6. printf("equal to ten\n");
  7. } else {
  8. printf("not equal to ten\n");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
equal to ten