Search:

Type: Posts; User: sairakhalid

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    961

    addition in linked lists

    wats the error over here:



    void addlist(node* headptr,int c)
    {

    cout<<"headptr value after being passed"<<headptr->val<<endl;
    node* temptr11 = new node;
    node* temptr1 = headptr;
  2. Replies
    1
    Views
    3,224

    addition in linked lists

    How can i make addition in my linked lists if the nodes are stroing two values:
    1) int element
    2) int colomnvalue
    i have to make the addition on the basis that the nodes having the same...
  3. Replies
    1
    Views
    1,058

    mkng linked list

    this code only makes two nodes and at the time of making third node it stucks


    void addnode(int x, int r,int c)//+++++++++++++++++++++++++++++=addnode

    {

    node* nodeptr = new node;...
  4. Replies
    3
    Views
    2,673

    yeah it worked out well!but now how i will pass...

    yeah it worked out well!but now how i will pass this 2 D array as a function parameter if i have to decide on runtime the colommn size of the array after reading from the file?
  5. Replies
    3
    Views
    2,673

    2D array syntax

    How can i declare a 2 D array in Visual Studio C++ 6.0 ?
    my code is giving errror;




    class sparseadd
    {
    int *p;
    int row;
Results 1 to 5 of 5