Search:

Type: Posts; User: Neo

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,552

    another quick question on the 2D array problem....

    another quick question on the 2D array problem. how would you dereference something in that?
  2. Replies
    4
    Views
    1,552

    sorry I didn't catch that in the FAQ. it has been...

    sorry I didn't catch that in the FAQ. it has been months since I have read that thing. THANKS.
  3. Replies
    4
    Views
    1,552

    dynamically allocating 2D arrays

    ok, so my programming partner and I just found out that you can't dynamically allocate a 2d array in C++. like this




    char* charPtr;

    charPtr = new char[someVariable][someVariable2];
  4. Replies
    2
    Views
    1,230

    just try specifying in the constructor run a...

    just try specifying in the constructor

    run a loop in the constructor that does it for ya
  5. Replies
    15
    Views
    3,235

    i didn't know that... thanks!:)

    i didn't know that... thanks!:)
  6. Replies
    15
    Views
    3,235

    you can pause it using a simple getch(); it...

    you can pause it using a simple getch(); it just sits there and waits for a character from the user. the getch() function is in the <conio.h> library. this is all assuming you are using VC++
  7. Replies
    16
    Views
    1,882

    dude

    dude
  8. Replies
    10
    Views
    2,470

    Considering his post he is probably new to C++...

    Considering his post he is probably new to C++ and I didn't learn about Vectors until my third CS class so Vectors might not be an option for him right now:) Vectors are a lot nicer though.
Results 1 to 8 of 9