fork download
  1. #include <stdio.h>
  2. int nijyou(int x){
  3. return x*x;
  4. }
  5.  
  6. int main(void) {
  7. int a,b;
  8. a = -3;
  9. b = nijyou(a);
  10. printf("%d",b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
9