fork download
  1. #include <stdio.h>
  2.  
  3. //引数の二乗を返す関数
  4. int square(int x){
  5. return x*x;
  6. }
  7. //main関数
  8. int main(void) {
  9. int x;
  10. x=3;
  11. printf("3の4乗は%d\n",square(square(x)));
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5264KB
stdin
Standard input is empty
stdout
3の4乗は81