Search:

Type: Posts; User: Roger2Ask

Search: Search took 0.01 seconds.

  1. Thread: player class

    by Roger2Ask
    Replies
    14
    Views
    1,665

    player() player(int h) player(int h,int m) ...

    player()
    player(int h)
    player(int h,int m)


    what u see above in the first three lines is called function overloading i think u must have read about it before if not i would suggest u to read...
  2. As you know that C provides no facility for doing...

    As you know that C provides no facility for doing error checking so it is upto u for doing the necessary error checking. You must really see to it that you don't insert 1000 elements instead of 5...
  3. Thread: player class

    by Roger2Ask
    Replies
    14
    Views
    1,665

    It really depends on you how to create ur player...

    It really depends on you how to create ur player class. The general trend among programmers is that they declare datatypes in the private section of the class and provide functions in the public...
  4. Replies
    14
    Views
    3,039

    Here's a complete code for making dynamic 2d array

    As you must be knowing that in arrays whether single or multidimensional, elements of arrays are stored in contigious memory location.So for building a dynamic two dimensional array i would suggest u...
Results 1 to 4 of 5