fork(1) download
  1. #include <stdio.h>
  2.  
  3. int max (int a, int b)
  4. {
  5. if(a<b)
  6. return b;
  7. if (a>b && b<a)
  8. return a;
  9. else
  10. return 5;
  11. }
  12.  
  13.  
  14. int main(void) {
  15. // your code goes here
  16. printf("%d", max(10,10));
  17. return 0;
  18. }
  19.  
  20.  
  21.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
5