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