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

Search:

Type: Posts; User: Paul McKenzie

Search: Search took 4.05 seconds.

  1. Replies
    6
    Views
    1,832

    Re: Don't know why program keeps crashing

    Regardless of the algorithm, you should write the code in a manner where you're not writing code over and over again.

    If you look at your addItem() function (if you wrote it already), you should...
  2. Replies
    6
    Views
    1,832

    Re: Don't know why program keeps crashing

    Before writing any code, did you draw on paper how a link list works, i.e. adding, removing, etc.? If not, you need to do that, and then take that visual on paper and translate it to code.

    Most...
  3. Replies
    6
    Views
    1,832

    Re: Don't know why program keeps crashing

    First, post the entire call to the function. We have no idea if the parameter you passed in is bogus or not, and everything relies on that parameter being valid. Note that your loop is wholly...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured