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