fork download
  1. #include <stdio.h>
  2. int func(int n){
  3. return n*n;
  4. }
  5. int main(void) {
  6. int n=3;
  7. printf("%d",func(n));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
9