Search:

Type: Posts; User: Estauns

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,936

    Hey, Thanks for the reply, but I'm not...

    Hey,

    Thanks for the reply, but I'm not understanding how your array gets updated, because your function doesn't return anything, nor does it get stored into a variable of some sort. How does it...
  2. Replies
    7
    Views
    1,936

    Pointers + Arrays = Headache

    Hey all,

    I have a 2D array of a Tic Tac Toe gameboard, and I'm trying to figure out how to pass the gameboard (aBoard[3][3]) to a function(void CreateBoard( xxx ))... and I have no idea how to do...
  3. Replies
    3
    Views
    1,116

    Thanks, thats EXACTLY what I was looking for =)

    Thanks, thats EXACTLY what I was looking for =)
  4. Replies
    3
    Views
    1,116

    "Homework Assignments"

    Hey all,

    I've learned all the basics of programming and I'm looking for some of those school homework assignments, where you take certain skills and hone them by repeatidly using them.

    One that...
  5. Thread: Random Numbers

    by Estauns
    Replies
    2
    Views
    751

    Random Numbers

    Hey all,

    Before you go flipping on me, I _HAVE_ read the FAQ and I _HAVE_ got my random numbers to work. I just don't understand what part of the random command.

    Heres the syntax:
    rand( ) %...
  6. Let me give a shot on pointers here, Basically...

    Let me give a shot on pointers here,

    Basically pointers are just memory saving conventions, instead of having one billion variables to hold a players name, you have one variable and a pointer to...
  7. Replies
    12
    Views
    4,273

    You could also trying using istream.h and...

    You could also trying using istream.h and ostream.h instead of both header files in one...

    #include <istream.h>
    #include <ostream.h>
  8. Replies
    6
    Views
    2,283

    One method would be to use default paramaters in...

    One method would be to use default paramaters in your function, for example:

    int mult(int x, int y, int z = 1)

    And now Z is a default paramater, which means by default its 1, but you can also...
  9. Replies
    7
    Views
    836

    My bad, should of clarified that.

    My bad, should of clarified that.
  10. Replies
    2
    Views
    814

    Thats life...

    I guess that's life then huh? =P

    Oh well, adapt these new changes and all will be well.
  11. Replies
    3
    Views
    875

    Look at your main() function, you have 4 curly...

    Look at your main() function, you have 4 curly braces, but I only see a need for 2.

    Try changing:
    int main()
    {

    int i;

    {
    cout << "Enter a number:" << endl;
  12. Replies
    7
    Views
    836

    It would be...

    delete [] *iPointer;
    *iPointer = NULL;
  13. Thread: float arrays

    by Estauns
    Replies
    10
    Views
    2,262

    It wouldn't be...

    IT wouldn't be that big of a pain in the ass to do 50 case statements, simply because you know your input is limited from -50 to 50.
  14. Thread: open gl

    by Estauns
    Replies
    8
    Views
    1,929

    OpenGL and DirectX Sites.

    Hey,

    If you're looking for DirectX help, check out nexe.gamedev.net and if you're looking for OpenGL help, check out nehe.gamedev.net

    They are both hosted at www.gamedev.net which is a...
  15. Replies
    4
    Views
    1,161

    Me need help wit pointers, me dum dum

    Hey all,

    Can anyone give me a hand with theory behind pointers? I just don't understand them for the life of me. What is the purpose of them, what use do they have?

    The only thing I could come...
  16. Tic Tac Toe -- Can you guys rate this please?

    Hey all, can you guys give me some input on how effecient this code is? It seems rather effecient to me, the main game loop only calls three functions, and those functions are re-used for each player...
Results 1 to 16 of 16