Search:

Type: Posts; User: TuxRules

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    1,222

    YES! Vart! I figured that out myself at the end...

    YES! Vart! I figured that out myself at the end of Math class. I came here to post my resolution. I finally got it! Here's the final deleteNode function I came up with that works in case it...
  2. Replies
    9
    Views
    1,222

    Thanks for the reply

    I got the first one working again. I had it working previously but fudged it up.


    void deleteNode(node_Ptr *listStarter)
    {
    node_Ptr previPtr, curPtr, temp;

    if...
  3. Replies
    9
    Views
    1,222

    Okay I can see that. Still, it doesn't help me...

    Okay I can see that. Still, it doesn't help me to understand why my code isn't functioning properly as I thought I was de-threading and freeing properly.
  4. Replies
    9
    Views
    1,222

    First of all, thanks for the reply. Secondly, it...

    First of all, thanks for the reply. Secondly, it indeed has to be bottom up on the stack. And finally, we have to not just free the node but properly de-thread it first.

    Also, your example...
  5. Replies
    9
    Views
    1,222

    link list not deleteing

    I get a string from the user and store it in a linked list in proper order and then print the final list. This works fine. However when it comes to deleting the bottom node on the stack, my code...
  6. Thread: Pascal to c

    by TuxRules
    Replies
    4
    Views
    8,086

    Hey you make a very apt point. I appreciate that...

    Hey you make a very apt point. I appreciate that understanding. Thanks.
  7. Thread: Pascal to c

    by TuxRules
    Replies
    4
    Views
    8,086

    Yes but then wouldn't that restructuring, as bad...

    Yes but then wouldn't that restructuring, as bad as it may be, get the program a little closer to something I can understand and rewrite? At the moment, I can make only quick guesses as to what it...
  8. Thread: Pascal to c

    by TuxRules
    Replies
    4
    Views
    8,086

    Pascal to c

    I found a freeware program call UrthWurm I had been looking for on the internet but the EXE cannot run on my system (16-bit on 64). I found the source but it's written in TURBO PASCAL 7.0. I only...
  9. Replies
    2
    Views
    1,481

    Passing unused variables to a function

    I was wondering about standards. I have two function beyond main:

    function a decides if the information passed to it needs to be printed to the screen

    function b prints the information to the...
Results 1 to 9 of 10