fork download
  1. #include <stdio.h>
  2. int main() {
  3.  
  4. int i = 23;
  5. char c = -23;
  6.  
  7. if (i < c)
  8. printf("Yes\n");
  9. else
  10.  
  11. printf("No\n");
  12.  
  13. }
Success #stdin #stdout 0.01s 5412KB
stdin
Standard input is empty
stdout
No