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 a=2;
  10. printf("%d^4=%d\n",a,square(square(a)));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
2^4=16