CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: EugeneYu

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    7,232

    Re: Help - What does litem*& list stands for?

    Thanks Russco, LindLey and PredicateNormative.

    Now I am much more clear on this.

    linknode*& means we can change the pointer value and pass back to caller function, like point to another...
  2. Replies
    7
    Views
    7,232

    Re: Help - What does litem*& list stands for?

    Thanks Russco. Well, what confused me is, i can simply use linknode*, which is a pointer to the first linknode, and any changes inside the function will also be propagated to the caller of the...
  3. Replies
    7
    Views
    7,232

    Help - What does litem*& list stands for?

    I encountered a problem recently which requires me to implement a function with such signature:

    int remove_consecutive_duplicates( linknode*& list );

    The linknode here refers to a predefined...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured