Search:

Type: Posts; User: Aliano

Search: Search took 0.00 seconds.

  1. Replies
    12
    Views
    1,560

    #include #include ...

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


    struct node
    int no;
    struct node *next;
    };
  2. Replies
    12
    Views
    1,560

    i didnt get what you mean by " Now, instead of...

    i didnt get what you mean by "
    Now, instead of printing something every time, set a flag and print it once at the end."


    i hate linked list -_-

    http://i.imgur.com/dtodncW.png
  3. Replies
    12
    Views
    1,560

    #include #include ...

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


    //Linked List data structure declaration
    struct node
    {
    int num;
    struct node *next;
    };
  4. Replies
    12
    Views
    1,560

    In my first post coding linked list print as the...

    In my first post coding linked list print as the order it is entered! i want to print like this. 0 to 50 scores as valid and rest as invalid :|

    Linked-List of valid scores 0->30->27->43-> END OF...
  5. Replies
    12
    Views
    1,560

    In the following code, it required for users to...

    In the following code, it required for users to enter scores between 0 -50 which should print valid link list and if values beyond the range are entered, should be flagged as invalid and print...
  6. Replies
    12
    Views
    1,560

    #include #include ...

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


    //Linked List data structure declaration
    struct node
    {
    int num;
    struct node *next;
    };
  7. Replies
    12
    Views
    1,560

    Linked List Question

    In the following code, it required for users to enter scores between 0 -50 which should print valid link list and if values beyond the range are entered, should be flagged as invalid and print...
Results 1 to 7 of 7