There are three ways to pass a 2D array to a function:
- The parameter is a 2D array
int array[10][10]; void passFunc(int a[][10]) { // ... } passFunc(array);
- The parameter is an array containing pointers
int *array[10]; for(int i = 0; i < 10; i++) array[i] = new int[10]; void passFunc(int *a[10]) //Array containing pointers { // ... } passFunc(array);
- The parameter is a pointer to a pointer
int **array; array = new int *[10]; for(int i = 0; i <10; i++) array[i] = new int[10]; void passFunc(int **a) { // ... } passFunc(array);
Related Posts:
- Return array in a function
- How do I declare a 2d array in C++ using new?
- warning: ISO C++ forbids variable length array
- How to create a dynamically-allocated array of const objects, but have values assigned to them?
- How to make an array with a dynamic size? General usage of dynamic arrays (maybe pointers too)?
- C++: Expression must have a constant value when declaring array inside function
- Delete 2D array C++
- C++ pass an array by reference
- C++ Array of pointers: delete or delete []?
- C++ correct way to return pointer to array from function
- Warning: comparison of distinct pointer types
- Is C++ Array passed by reference or by pointer?
- Array of Linked Lists C++
- How to dynamically allocate arrays in C++
- How do I find the length of an array?
- Initializing an array of objects
- Passing an array by reference
- What does “dereferencing” a pointer mean?
- Regular cast vs. static_cast vs. dynamic_cast
- What is a smart pointer and when should I use one?
- How to convert a char array to a string?
- How to fix a “invalid operands to binary expression” error?
- What is the array form of ‘delete’?
- Use new operator to initialise an array
- What is a dangling pointer?
- How do I declare a 2d array in C++ using new?
- What does `*&` in a function declaration mean?
- (->) arrow operator and (.) dot operator , class pointer
- What is the difference between const int*, const int * const, and int const *?
- C++ – No matching member function for call to ‘push_back’
- What is uintptr_t data type
- What is the difference between const int*, const int * const, and int const *?
- Pointer to incomplete class type is not allowed
- Is there a function to copy an array in C/C++?
- Cleanest way to copy a constant size array in c++11
- Reverse Contents in Array
- C++ error: “Array must be initialized with a brace enclosed initializer”
- c++ array – expression must have a constant value
- Can’t resolve Error: indirection requires pointer operand (‘int’ invalid)
- Static array vs. dynamic array in C++
- Fill array with random numbers within a specified range (C++)
- Remove an array element and shift the remaining ones
- How to add element to C++ array?
- How to convert vector to array
- How to find the size of an int[]?
- What does int & mean
- splitting a string into an array in C++ without using vector
- What’s the syntax for declaring an array of function pointers without using a separate typedef?
- Printing an array in C++?
- Sorting Linked List C++ with pointers
- Is the sizeof(some pointer) always equal to four?
- 2D array vs array of arrays
- How do you initialise a dynamic array in C++?
- C++ Expression must have pointer-to-object type
- C++ strings and pointers
- initial value of reference to non-const must be an lvalue
- Typedef function pointer?
- How to initialize a vector of pointers
- What is the use of intptr_t?
- Reading from .txt file into two dimensional array in c++
- Creation of Dynamic Array of Dynamic Objects in C++
- C++ – Assigning null to a std::string
- Correct way to work with vector of arrays
- C++ – Too Many Initializers for Arrays
- Resizing dynamic array in c++
- C++ Initializing a Global Array
- Comparing the values of char arrays in C++
- Dynamically allocated string array, then change it’s value?
- error: invalid initialization of non-const reference of type ‘int&’ from an rvalue of type ‘int’
- Using C-string gives Warning: “Address of stack memory associated with local variable returned”
- Reference to non-static member function must be called
- How can I assign an array from an initializer list?
- Why use pointers?
- Multidimensional Vectors in C++
- How do I return a char array from a function?
- What’s the difference between * and & in C?
- creating an array of structs in c++
- Reading data from file into an array
- How to read lines of text from file and put them into an array
- Why can’t we pass arrays to function by value?
- Double pointer array in c++
- Function stoi not declared
- creating dynamic array of string c++
- creating an array of structs in c++
- Why should I use a pointer rather than the object itself?
- too many initializers for ‘int [0]’ c++
- C++ 2d char array to string
- Using cin for char array
- how to find 2d array size in c++
- Initializing pointers in C++
- Getting error “array bound is not an integer constant before ‘]’ token”
- Different ways to deallocate an array – c++
- Difference between function arguments declared with & and * in C++
- Difference between the int * i and int** i
- Return a 2d array from a function
- What is a `char*`?
- Proper way to pass dynamic arrays to other functions
- clearing a vector of pointers [duplicate]
- C++ Swapping Pointers
- C++ float array initialization