fork download
  1. #include <stdio.h>
  2.  
  3. int sum(int a,int b,int c){
  4. return a+b+c/2;
  5. }
  6. int main(void) {
  7. // your code goes here
  8. int (*function)(int,int,int);
  9. function=sum;
  10. printf("%d",function(2,3,4));
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
7