fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void f(int N)
  5. {
  6. char arr[N];
  7. cout << N;
  8. }
  9.  
  10. int main()
  11. {
  12. f(10);
  13. }
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
10