Search:

Type: Posts; User: laserlight

Search: Search took 0.24 seconds.

  1. Replies
    8
    Views
    28,731

    As qny noted, when you pass a 2D array as an...

    As qny noted, when you pass a 2D array as an argument, it is not passed as a pointer to a pointer. Rather, it is passed as a pointer to the first array of the array of arrays.


    Not quite: if you...
  2. Replies
    8
    Views
    28,731

    Why do you need to pass a pointer to a pointer by...

    Why do you need to pass a pointer to a pointer by reference?


    That would be the way to do it since "pass by reference" translates to "pass a pointer to it" in C, except that so many levels of...
Results 1 to 2 of 2