ArtsAutosBooksBusinessEducationEntertainmentFamilyFashionFoodGamesGenderHealthHolidaysHomeHubPagesPersonal FinancePetsPoliticsReligionSportsTechnologyTravel

C Program Code for Stack Data Structure

Updated on June 25, 2022
radhikasree profile image

Radhika has the degree of master in computer applications. She has worked as a faculty with Aptech Computer Education Center for sometime.

Stack data structure
Stack data structure | Source

Storage of data in the memory unit of a computer system affects the speed of program execution by the CPU. If virtual memory and cache memory can manage large volume of data and provide faster access to them, stacks are memory areas that store function attributes in a Last In First Out manner (LIFO). Whenever a function is called, its parameters and local variables get pushed to the top of the stack for faster execution. After the function exits returning values, it gets removed and the next function is being pushed to the top. The main operations push and pop in a stack are best illustrated through the abstract data structure using pointers.


C program for implementing stack operations takes function code as the data item in the structure. Functions are identified using this code and the stack is built in the order of Last in First out manner. Different steps involved are creation, pushing and removal.

1. Stack creation

Data structure stack contains function code, funcode as the main data item and a pointer to the next function in the stack. Global pointer top always refers to the top of the stack that gets linked to the next element. Recursive function create_stack() is responsible for creating the stack that reads the function codes of each for execution. The temporary variable ptr holds its value and it gets linked to the top pointer.As top always points to the last entered function in a stack, it is made to point to ptr. Recursion of the function builds the stack and whenever the code becomes -999, this process stops.

Flowchart for the function create_stack()

Stack creation
Stack creation | Source

Output

Stack creation
Stack creation | Source

2. Push operation

Push operation accommodates the newly entered function making it the top. This operation is carried out by the function push(sta *ptr) which takes the new function node ptr as the parameter. The function starts by reading the funcode of ptr and assigns values


ptr->next=top;

top=ptr;


The top pointer is made to point to ptr.

Flowchart for the function push(sta *)

Push operation in a stack
Push operation in a stack | Source

Output of push operation

Push operation in a stack
Push operation in a stack | Source

3. Pop operation

Functions are removed from stack after they are executed. This is done by the pop operation that removes the last entered ones first. Function pop() does this task that refers pointer ptr to top first and makes top to point to the function next to it. Then ptr is freed from the memory using the free() operator.


Flowchart for the function pop()

Pop operation
Pop operation | Source

Output of pop operation

Pop operation in a stack
Pop operation in a stack | Source

4. Displaying a stack

Displaying the stack is another important part of the program. Just like we display nodes in the linked list, stack elements also can be displayed. Pointer cur is made to point to top and the value cur->funcode is displayed each time the loop is executed. Pointer cur is incremented to point to the next element of the stack and the loop exits when the value of cur becomes NULL.


Flowchart for the function display()

Stack display
Stack display | Source

A stack can be said to be a restricted data structure, on account of the lesser operations performed on it. Stack elements follow a natural order as they are removed from the stack in the reverse order to the order of their addition. Therefore, the lower elements are those that have been on the stack for the longest.


#include<stdio.h>
#include<conio.h>
#include<alloc.h>


struct stack
{
int funccode;
struct stack *next;
};

typedef struct stack sta;
sta *top;


void main()
{
int ch=1;
sta *ptr;
void create_stack();
void push(sta *);
void pop(void);
void display(void);

clrscr();

printf("\n\n\tCreate stack(-999 to end):\n\n");

create_stack();
printf("\n\n\n\t\t\tCreated stack is:");
printf("\n\t\t\t----------------\n\n\t");

display();

clrscr();
display();
while(ch!=3)
{
printf("\n\n\t\tStack operations:");
printf("\n\t\t------------------");
printf("\n\n\t\t1. Push");
printf("\n\n\t\t2. Pop");
printf("\n\n\t\t3. Exit");

printf("\n\n\tEnter your choice:");
scanf("%d", &ch);

switch(ch)
{

case 1: ptr=(sta *)malloc(sizeof(sta *));
push(ptr);

printf("\n\n\n\t\t\tStack after push operation is:");

display();
clrscr();
break;

case 2: pop();
printf("\n\n\n\t\t\tStack after pop operation is:");

display();
break;

case 3: exit(1);
break;

}
clrscr();
display();
}
getch();
}


void create_stack()
{
sta *ptr;
ptr=(sta *)malloc(sizeof(sta *));
printf("\n\tEnter each function code:");
scanf("%d", &ptr->funccode);

if(ptr->funccode!=-999)
{
ptr->next=top;
top=ptr;

create_stack();

}
else
ptr->next=NULL;

}

void push(sta *ptr)
{
printf("\n\tEnter the function code:");
scanf("%d", &ptr->funccode);
ptr->next=top;
top=ptr;
}

void pop()
{
sta *ptr;
ptr=top;
top=top->next;
free(ptr);
}

void display()
{
sta *cur;

printf("\n\n\t");
cur=top;

while(cur)
{
printf("%d----------->", cur->funccode);
cur=cur->next;

}

getch();

}





Do you find this code helpful?

See results

© 2013 Radhika Sreekanth

working

This website uses cookies

As a user in the EEA, your approval is needed on a few things. To provide a better website experience, hubpages.com uses cookies (and other similar technologies) and may collect, process, and share personal data. Please choose which areas of our service you consent to our doing so.

For more information on managing or withdrawing consents and how we handle data, visit our Privacy Policy at: https://corp.maven.io/privacy-policy

Show Details
Necessary
HubPages Device IDThis is used to identify particular browsers or devices when the access the service, and is used for security reasons.
LoginThis is necessary to sign in to the HubPages Service.
Google RecaptchaThis is used to prevent bots and spam. (Privacy Policy)
AkismetThis is used to detect comment spam. (Privacy Policy)
HubPages Google AnalyticsThis is used to provide data on traffic to our website, all personally identifyable data is anonymized. (Privacy Policy)
HubPages Traffic PixelThis is used to collect data on traffic to articles and other pages on our site. Unless you are signed in to a HubPages account, all personally identifiable information is anonymized.
Amazon Web ServicesThis is a cloud services platform that we used to host our service. (Privacy Policy)
CloudflareThis is a cloud CDN service that we use to efficiently deliver files required for our service to operate such as javascript, cascading style sheets, images, and videos. (Privacy Policy)
Google Hosted LibrariesJavascript software libraries such as jQuery are loaded at endpoints on the googleapis.com or gstatic.com domains, for performance and efficiency reasons. (Privacy Policy)
Features
Google Custom SearchThis is feature allows you to search the site. (Privacy Policy)
Google MapsSome articles have Google Maps embedded in them. (Privacy Policy)
Google ChartsThis is used to display charts and graphs on articles and the author center. (Privacy Policy)
Google AdSense Host APIThis service allows you to sign up for or associate a Google AdSense account with HubPages, so that you can earn money from ads on your articles. No data is shared unless you engage with this feature. (Privacy Policy)
Google YouTubeSome articles have YouTube videos embedded in them. (Privacy Policy)
VimeoSome articles have Vimeo videos embedded in them. (Privacy Policy)
PaypalThis is used for a registered author who enrolls in the HubPages Earnings program and requests to be paid via PayPal. No data is shared with Paypal unless you engage with this feature. (Privacy Policy)
Facebook LoginYou can use this to streamline signing up for, or signing in to your Hubpages account. No data is shared with Facebook unless you engage with this feature. (Privacy Policy)
MavenThis supports the Maven widget and search functionality. (Privacy Policy)
Marketing
Google AdSenseThis is an ad network. (Privacy Policy)
Google DoubleClickGoogle provides ad serving technology and runs an ad network. (Privacy Policy)
Index ExchangeThis is an ad network. (Privacy Policy)
SovrnThis is an ad network. (Privacy Policy)
Facebook AdsThis is an ad network. (Privacy Policy)
Amazon Unified Ad MarketplaceThis is an ad network. (Privacy Policy)
AppNexusThis is an ad network. (Privacy Policy)
OpenxThis is an ad network. (Privacy Policy)
Rubicon ProjectThis is an ad network. (Privacy Policy)
TripleLiftThis is an ad network. (Privacy Policy)
Say MediaWe partner with Say Media to deliver ad campaigns on our sites. (Privacy Policy)
Remarketing PixelsWe may use remarketing pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to advertise the HubPages Service to people that have visited our sites.
Conversion Tracking PixelsWe may use conversion tracking pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to identify when an advertisement has successfully resulted in the desired action, such as signing up for the HubPages Service or publishing an article on the HubPages Service.
Statistics
Author Google AnalyticsThis is used to provide traffic data and reports to the authors of articles on the HubPages Service. (Privacy Policy)
ComscoreComScore is a media measurement and analytics company providing marketing data and analytics to enterprises, media and advertising agencies, and publishers. Non-consent will result in ComScore only processing obfuscated personal data. (Privacy Policy)
Amazon Tracking PixelSome articles display amazon products as part of the Amazon Affiliate program, this pixel provides traffic statistics for those products (Privacy Policy)
ClickscoThis is a data management platform studying reader behavior (Privacy Policy)