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