Search:

Type: Posts; User: sokermaniac

Search: Search took 0.00 seconds.

  1. Replies
    34
    Views
    5,279

    you're not going to believe this but i dont have...

    you're not going to believe this but i dont have a compilier on my comp. i got it cleaned out a while back and could not find the program cd so unless im at school, i dont have a compilier :p. worst...
  2. Replies
    34
    Views
    5,279

    something like this? int ***board; int...

    something like this?


    int ***board;

    int rows;
    int columns;
    int thirddim;

    cout << "Enter number of rows and columns and some number for the 3rd dimeninsion: ";
  3. Replies
    34
    Views
    5,279

    yeah my prof is a little unorthodox. but i had no...

    yeah my prof is a little unorthodox. but i had no choice but to get him this semester. i've been reading ahead and im understanding the delete concept just not how to use it haha.

    and the small...
  4. Replies
    34
    Views
    5,279

    by the way, i really appreciate everybody helping...

    by the way, i really appreciate everybody helping me out here! i like programming but im no stud compared to you all! its a constant struggle with me :p
  5. Replies
    34
    Views
    5,279

    ok sorry about not using code tags :P not used to...

    ok sorry about not using code tags :P not used to forums haha. 2nd my prof was going to start delete but toward the end of the semester he decided not to teach that part but im sure its not difficult...
  6. Replies
    34
    Views
    5,279

    yeah for my class you can dive right into C++...

    yeah for my class you can dive right into C++ without C. I'm assuming i may have to learn C sometime eh?
  7. Replies
    34
    Views
    5,279

    ok for a 2d here is what i have: int **board;...

    ok for a 2d here is what i have:

    int **board;

    int rows;
    int columns;

    cout << "Enter number of rows and columns: ";
    cin >> rows >> columns;
  8. Replies
    34
    Views
    5,279

    yeah a little bit to be honest. but that means to...

    yeah a little bit to be honest. but that means to put a for loop on the 2nd pointer and another for loop for the 3rd pointer and another for loop for the nth pointer yes?
  9. Replies
    34
    Views
    5,279

    ok so im looking back at my notes and it seems...

    ok so im looking back at my notes and it seems that you would first initialize the first dimension and then make a for loop for the second then make another for loop for the 3rd?
  10. Replies
    34
    Views
    5,279

    int *list; int arraysize; cout

    int *list;
    int arraysize;

    cout << blah blah
    cin>> arraysize;

    list = new int[arraysize];

    or something like that haha
  11. Replies
    34
    Views
    5,279

    haha boy i need to learn vectors! But again we're...

    haha boy i need to learn vectors! But again we're just using dynamic arrays. So how would i make a 3D dynamic array then?
  12. Replies
    34
    Views
    5,279

    Ah ok. Yeah I meant the type name. :P and right...

    Ah ok. Yeah I meant the type name. :P and right now my prof is making us know how to use dynamic arrays so we're not dabbing into vectors quite yet.

    So my next question is to declare it. ...
  13. Replies
    34
    Views
    5,279

    dynamic arrays

    hello first post here! w00t! anywho, i have a question about dynamic arrays. I've noticed that you need the star before the title and more stars if you need more than just one dimension. I'm...
Results 1 to 13 of 13