Search:

Type: Posts; User: anduril462

Search: Search took 0.03 seconds.

  1. Thread: linked list

    by anduril462
    Replies
    3
    Views
    1,652

    You're welcome, and don't sweat the little error....

    You're welcome, and don't sweat the little error. Happens to all of us (it's just more embarrassing when you've been doing this 10 years and get caught up by something like that).

    And yes, that's...
  2. Thread: linked list

    by anduril462
    Replies
    3
    Views
    1,652

    while(current != NULL); Ditch that semicolon. ...

    while(current != NULL);
    Ditch that semicolon. It's running the while loop with no body, so you never update current. Hence your infinite loop.

    The other problem I noticed is that you are...
Results 1 to 2 of 2