fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = -1;
  5. unsigned int b = 1;
  6. if (a < b) {
  7. printf("a < b");
  8. } else {
  9. printf("a > b");
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
a > b