Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chachi

    Printing linked list to binary file

    Thanks. Yeah, I did forget to include the fclose. I was actually finally able to come up with a solution.
  2. chachi

    Printing linked list to binary file

    Please disregard the second half of the question dealing with displaying the rest of the records. I figured it out.
  3. chachi

    pointer initialization

    Gotcha. Thanks for the input.
  4. chachi

    Printing linked list to binary file

    First of all, sorry for the profuse code that follows, but I don't want to post too little info. I'm trying to print a linked list that is associated with a binary file. The linked list has only the partid, offset and next pointer. I can only get my print routine to print the last record...
  5. chachi

    descending ordered list

    To answer my own question, just change the greater than symbol to a lesser than symbol.
  6. chachi

    descending ordered list

    The following code orders a linked list in ascending order: while (currentPtr != NULL && value > currentPtr->data) { previousPtr = currentPtr; currentPtr = currentPtr->nextPtr; } How might I alter this to sort descending?
  7. chachi

    pointer initialization

    In the following code, why is the line highlighted in red set to null? #include &quot;stdafx.h&quot; #include <stdio.h> #include <stdlib.h> struct listNode { char data; struct listNode *nextPtr; }; typedef struct listNode LISTNODE; typedef LISTNODE *LISTNODEPTR; void insert(LISTNODEPTR *...
  8. chachi

    Backup set canceled

    I am having the exact same problem and performed the same fixes with no resolve. Has there been any resolution to this problem. I am escalating this with Veritas. Thanks,

Part and Inventory Search

Back
Top