fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. volatile int a = 3000000000;
  6. volatile int b = 0;
  7. printf("%s\n", (a < b ? "true" : "false"));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
true