Passing arrays and matrices to functions as pointers and pointers to pointers in C - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T11:09:25Zhttp://stackoverflow.com/feeds/question/546860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in3Passing arrays and matrices to functions as pointers and pointers to pointers in CAuron2009-02-13T17:28:23Z2009-02-14T06:25:35Z
<p>Given the following code:</p>
<pre><code>void
foo( int* array )
{
// ...
}
void
bar( int** matrix )
{
// ...
}
int
main( void ) {
int array[ 10 ];
int matrix[ 10 ][ 10 ];
foo( array );
bar( matrix );
return 0;
}
</code></pre>
<p>I don't understand why I get this warning:</p>
<blockquote>
<p>warning: passing argument 1 of ‘bar’ from incompatible pointer type</p>
</blockquote>
<p>Although 'foo' call seems to be ok.</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in/546872#5468720Answer by kmkaplan for Passing arrays and matrices to functions as pointers and pointers to pointers in Ckmkaplan2009-02-13T17:31:26Z2009-02-13T17:31:26Z<p>You should define bar as:</p>
<pre><code>bar( int* matrix )
</code></pre>
<p>In C all arrays should be passed as <code>int*</code> (or <code>type_of_element*</code> for other types).</p>
<p><code>int **</code> would be ok if your data was really an array of pointers. <code>int[*data[]</code> for example. Thats what you get in <code>main(int argc, char *argv[])</code>.</p>
http://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in/546890#5468903Answer by antti.huima for Passing arrays and matrices to functions as pointers and pointers to pointers in Cantti.huima2009-02-13T17:36:04Z2009-02-13T17:36:04Z<p>The problem is that the data structure matrix[10][10] is actually not a table of ten pointers to array[10]'s, but it is an sequential array of 100 integers. The proper signature for bar is</p>
<pre><code>bar (int matrix[10][10])
</code></pre>
<p>If you actually want to represent the matrix using indirection and have int **matrix as the parameter type for bar, then you need to allocate it differently:</p>
<pre><code>int *matrix[10];
int my_data[100];
int i;
for (i = 0; i < 10; i++) { matrix[i] = &(my_data[i * 10]); }
bar(matrix);
</code></pre>
<p>Now 'matrix' matches the type int **. 'matrix' is an array of ten pointers, and you can pass it by pointer, hence getting the second *.</p>
http://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in/546891#5468916Answer by Mark Pim for Passing arrays and matrices to functions as pointers and pointers to pointers in CMark Pim2009-02-13T17:36:09Z2009-02-13T17:41:15Z<p>Passing multi-dimensional arrays in C is a tricky subject. See <a href="http://c-faq.com/aryptr/ary2dfunc2.html" rel="nofollow">this FAQ</a>.</p>
<p>The question to ask is how you'll be using <code>bar</code>. If you always know it will be passed a 10x10 array then rewrite it as</p>
<pre><code>bar(int matrix[10][10]);
</code></pre>
<p>If you want to cope with arrays of varying dimensions then you might have to pass in the lengths:</p>
<pre><code>bar(int *matrix, int width, int height);
</code></pre>
http://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in/546924#5469240Answer by dwc for Passing arrays and matrices to functions as pointers and pointers to pointers in Cdwc2009-02-13T17:42:32Z2009-02-13T17:42:32Z<pre><code>int **matrix
</code></pre>
<p>would indicate that you have a pointer to a pointer to int. That's commonly used to indicate a pointer to an array of pointers (also called a vector). That's definitely NOT the case with</p>
<pre><code>int matrix[10][10]
</code></pre>
<p>which is a more of a pointer to a single section of memory sized for 10x10 ints. Try changing to:</p>
<pre><code>void bar(int *matrix[])
</code></pre>
http://stackoverflow.com/questions/546860/passing-arrays-and-matrices-to-functions-as-pointers-and-pointers-to-pointers-in/546982#5469829Answer by Johannes Schaub - litb for Passing arrays and matrices to functions as pointers and pointers to pointers in CJohannes Schaub - litb2009-02-13T17:58:13Z2009-02-14T06:25:35Z<p>Well, it's certainly not well understood by the C community as can be seen by glancing over SO. The magic is, <strong>all of the following are totally, 100%, equivalent</strong>:</p>
<pre><code>void foo(int (*array)[10]);
void foo(int array[][10]);
void foo(int array[10][10]);
void foo(int array[42][10]);
</code></pre>
<p>It is <em>very</em> important to draw the distinction of a pointer and an array. <em>An array is not a pointer</em>. An array can be converted to a pointer to its first element. If you have a pointer you have this:</p>
<pre><code>--------
| ptr | -------> data
--------
</code></pre>
<p>However, if you have an array, you have this:</p>
<pre><code>---------------------------
| c1 | c2 | c3 | ... | cn |
---------------------------
</code></pre>
<p>With the pointer, the data is at a whole other planet, but linked to by the pointer. An array has the data itself. Now, <strong>a multi-dimensional array is just an array of arrays.</strong> The arrays are nested into a parent array. So, the sizeof of your array is:</p>
<pre><code>(sizeof(int) * 10) * 10
</code></pre>
<p>That is because you have 10 arrays, all of which are arrays of 10 integers. Now, if you want to pass that array, it is converted. But to what? A pointer to its first element. The element type is <em>not</em> a pointer, but an array. As a consequence, you pass a pointer to an array of 10 int:</p>
<pre><code>int (*)[10] // a pointer to an int[10]
</code></pre>
<p>It is neither a array of <code>int*</code>, nor a <code>int**</code>. You may ask why the array is not passed as an <code>int**</code>. It's because the compiler has to know the row-length. If you do an <code>array[1][0]</code>, the compiler will address a place <code>sizeof(int) * 10</code> bytes apart from the begin of the 2 dimensional array. It decodes that information in the pointer-to-array type. </p>
<p>So, you have to chose among one of the above fully equivalent function prototypes. Naturally, the last one is just confusing. The compiler just silently ignores any number written in the most outer dimension if a parameter is declared to be an array. So i would also not use the second last version. Best is to use the first or second version. What is important to remember is that <strong>C has no (real) array parameters</strong>! The parameter will be a pointer in the end (pointer to array in this case).</p>
<p>Note how the multi-dimensional case of above is similar to the degenerate, one dimensional case below. All of the following 4 versions are fully equivalent:</p>
<pre><code>void foo(int *array);
void foo(int array[]);
void foo(int array[10]);
void foo(int array[42]);
</code></pre>