Search:

Type: Posts; User: Caverage

Search: Search took 0.00 seconds.

  1. Replies
    22
    Views
    3,041

    Remove the two 'else' statements and just use the...

    Remove the two 'else' statements and just use the 'if' and it should be what you want.
  2. Replies
    9
    Views
    1,416

    yes, a pointer is a 'type' but also a 'variable'....

    yes, a pointer is a 'type' but also a 'variable'.

    int* p, i //looks as if they are both pointers at a glance
    int *p, i //makes more sense, easier to read
  3. Replies
    5
    Views
    1,113

    what about .good()

    what about .good()
  4. Replies
    10
    Views
    1,413

    So why does the code work?

    So why does the code work?
  5. Replies
    10
    Views
    1,413

    class foo{ public: void fun(){ /* do something...

    class foo{
    public:
    void fun(){ /* do something */ };
    };

    int main(){

    foo *pF;
    pF->fun();
Results 1 to 5 of 5