Search:

Type: Posts; User: coolprogrammer

Search: Search took 0.00 seconds.

  1. Thank you very much it makes a LOT of sense now....

    Thank you very much it makes a LOT of sense now. I was able to do this in minutes after this wonderful explanation. :-P
  2. I am a bit closer it is now printing out the...

    I am a bit closer it is now printing out the first thing in the list some trash not sure what exactly. The only part of the program i modified was the storeData function so I will just post that

    ...
  3. sorry forgot to add the other functions

    sorry forgot to add the other functions
  4. irectories issue iterating through linked linked?

    I am coding this program to just save the directory names into a linked list. I THINK have done that successfully (because it prints the strings correctly right after it saves it". My issue now is...
  5. Replies
    3
    Views
    1,542

    can you or someone elaborate in more detail...

    can you or someone elaborate in more detail because all I have is this so far now

    void ins(struct node **h, struct node **t, int x){
    struct node *temp;


    if...
  6. Replies
    3
    Views
    1,542

    insert correctly into linked list

    include <stdio.h>
    #include <stdlib.h>

    struct node {
    int value;
    struct node *next;
    };
    void insert_node (struct node **h, struct node **t, int v) {
    struct node *temp;
    if ((temp = (struct node...
Results 1 to 6 of 6