fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int N = 10;
  5. const int M = 20;
  6.  
  7. void Func(int arr[N][M])
  8. {
  9. }
  10.  
  11.  
  12. int main() {
  13. int a[N][M];
  14. Func(a);
  15.  
  16. }
Success #stdin #stdout 0s 4464KB
stdin
Standard input is empty
stdout
Standard output is empty