Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

print linkedstack cpp

void PrintList(){
        Node* n=new Node();
        n=top;
        while (n!=NULL)
        {
            cout<<n->data<<"
";
            n=n->Next;
        }
    }
 
PREVIOUS NEXT
Tagged: #print #linkedstack #cpp
ADD COMMENT
Topic
Name
9+6 =