Sunday 17 August 2014

Implementing stack (with arrays)operations using dynamic memory allocation

#include<stdio.h>
#include<stdlib.h>
void push();
void pop();
void display();
int *stack,*top,n;
void main()
{
int ch;
printf("Enter the size of stack:\n");

Read more...

No comments:

Post a Comment