fork download
  1.  
  2. int threeWayMax(int a, int d, int f) {
  3. return a > d
  4. ? a > f
  5. ? a
  6. : f
  7. : d > f
  8. ? d
  9. : f;
  10. }
  11.  
  12. int main(void) {
  13.  
  14. }
Success #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty