Pages
Home
C++/C- Programs
DOS Commands
BS Communication
Mathematics
Advertisement
About Us
Contact us
Friday, August 23, 2013
How to write Simple Stack Program using Linked List
#include<conio.h>
#include<stdio.h>
void PUSH();
void PEEP();
void POP();
struct node
{
int data;
struct node *link;
}*head,*top=NULL,*newx,*item;
Read more »
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)