Tuesday, May 25, 2010

Source code For Stack implementation using linked list in C++

Stack using Linked list

#include "process.h"
#include "iostream.h"
struct node
{
int info;
node *next;
};

 
^ Scroll to Top