fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. const int L = 5;
  6. const int N = 10;
  7.  
  8. void randomize(int arr[][N])
  9. {
  10. cout << "Hello!" << endl;
  11. }
  12.  
  13. int main()
  14. {
  15. int NBits[L][N];
  16. for (int i = 0; i < L; i++)
  17. for (int j = 0; j < N; j++)
  18. NBits[i][j] = i;
  19. randomize(NBits);
  20. return 0;
  21. }
Success #stdin #stdout 0s 2724KB
stdin
Standard input is empty
stdout
Hello!