CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tendoeschate

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    10,931

    Re: Linked list deletion

    but it is not mattering as i am getting the same result as previous one please help
  2. Replies
    4
    Views
    10,931

    Linked list deletion

    My code is in the attachment

    the element is not getting deleted can yu tell the mistake i debugged the program but could not find anything
  3. Replies
    6
    Views
    14,126

    Re: linked list problem

    I DID A FEW CHANGES :
    #include<stdio.h>

    struct node
    {
    int info;
    struct node *next;
    };
    typedef struct node *nodeptr;
    nodeptr i;
  4. Replies
    6
    Views
    14,126

    Re: linked list problem

    The output is supposed to be the three value inputs
    but only the last input is getting displayed
    please help
  5. Replies
    6
    Views
    14,126

    linked list problem

    #include<stdio.h>
    #include<iostream.h>
    struct node
    {
    int info;
    struct node *next;
    };
    typedef struct node *nodeptr;
    nodeptr i;
    nodeptr q;
  6. Replies
    1
    Views
    8,085

    linked list problem

    my code is
    #include<stdio.h>
    #include<iostream.h>
    struct node
    {
    int info;
    struct node *next;
    };
    typedef struct node *nodeptr;
    nodeptr i;
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured