fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void metoda(const int toJestConst) {
  6. static int const toTezJestConst = toJestConst;
  7. cout << toTezJestConst << endl;
  8. }
  9.  
  10. int main() {
  11. metoda(2);
  12. metoda(3);
  13. return 0;
  14. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
2
2