Search:

Type: Posts; User: Lawn Gnomusrex

Search: Search took 0.00 seconds.

  1. Ok, thank you! I appreciate it. :)

    Ok, thank you! I appreciate it. :)
  2. Ok, so I would have to do this? for(int i =...

    Ok, so I would have to do this?


    for(int i = 0; i < 10; i++) {
    delete [] forest[i];
    }
    delete [] forest;
  3. Very quick question about dynamic arrays.

    I had a very quick question about dynamic multidimensional arrays.

    If I were to create an array like this code, how would I go about cleaning it up?


    int **forest = new int *[10];
    for (int i...
Results 1 to 3 of 3