fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4. int a = 5;
  5. signed char b = -4;
  6. int c = a > b;
  7. printf ("(%d > %d) produce %d\n", a, b, c);
  8. getchar ();
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.02s 1724KB
stdin
Standard input is empty
stdout
(5 > -4) produce 1