fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int zalupa_kentavra(int x);
  5.  
  6. int main(){
  7. int x = 5;
  8. x = zalupa_kentavra(x);
  9. cout << x;
  10. }
  11.  
  12. int zalupa_kentavra(int x){
  13. x = x*x;
  14. return x;
  15. }
  16.  
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
25