fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. void cal(int x,int y,int *sum,int *diff,int *mul,int *mod){
  5. *sum=x + y;
  6. if (x > y) {
  7. *diff = x - y;
  8. } else {
  9. *diff = y - x;
  10. }
  11.  
  12. *mul=x * y;
  13. *mod=x / y;
  14. }
  15.  
  16. int main(void) {
  17. int x=25;
  18. int y=5;
  19. int sum,diff,mul,mod;
  20.  
  21. cal(x,y,&sum,&diff,&mul,&mod);
  22.  
  23. printf("%d\n",sum);
  24. printf("%d\n",diff);
  25. printf("%d\n",mul);
  26. printf("%d\n",mod);
  27.  
  28.  
  29.  
  30. return 0;
  31.  
  32. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
30
20
125
5