fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void f(const int n)
  5. {
  6. double arr[n];
  7. //do some
  8. }
  9.  
  10. int main() {
  11.  
  12. f(20);
  13. // your code goes here
  14. return 0;
  15. }
Success #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty