Search:

Type: Posts; User: Anass

Search: Search took 0.00 seconds.

  1. Thread: Files in C

    by Anass
    Replies
    1
    Views
    978

    Files in C

    Hello guys, I do have a simple question about files;however, I didn't manage to find a solution to it.

    Im writing a program that handle loading data from files. Basically, the first line of the...
  2. Replies
    7
    Views
    7,959

    guys this is what I've done so far: Node...

    guys this is what I've done so far:

    Node *MakeSortedList(Node *list)
    {
    //declarations of variables.
    Node *sorted_list = NULL;
    Node *temp_node = CreateNode(0,1);
    int i = 0;
    ...
  3. Replies
    7
    Views
    7,959

    Thank you guys I'll try your suggestions right...

    Thank you guys I'll try your suggestions right now.
  4. Replies
    7
    Views
    7,959

    Sorting a linked list

    Hello!
    I've been trying to figure out a way to sort a linked list, but I allways face problems.
    my linked list is basicaly simpe:

    typedef struct{
    int value;
    Node...
Results 1 to 4 of 4