fork download
  1. #include <stdio.h>
  2.  
  3. int fuhi(int n, int m){
  4. return n+m;
  5. }
  6. int hoge(int n, int m){
  7. return 3*n+4*m;
  8. }
  9. int main(){
  10. printf("%d",hoge(4,fuhi(1,2)));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
24