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