Notes
Notes - notes.io |
#include <stdlib.h>
// define node structure
struct Node {
int data;
struct Node* next;
};
// define stack structure
struct Stack {
struct Node* top;
};
// function to create a new node
struct Node* newNode(int data) {
struct Node* node = (struct Node*)malloc(sizeof(struct Node));
node->data = data;
node->next = NULL;
return node;
}
// function to check if the stack is empty
int isEmpty(struct Stack* stack) {
return (stack->top == NULL);
}
// function to push an element to the stack
void push(struct Stack* stack, int data) {
struct Node* node = newNode(data);
node->next = stack->top;
stack->top = node;
printf("%d pushed to stackn", data);
}
// function to pop an element from the stack
int pop(struct Stack* stack) {
if (isEmpty(stack)) {
printf("Stack is emptyn");
return -1;
}
struct Node* temp = stack->top;
stack->top = stack->top->next;
int popped = temp->data;
free(temp);
return popped;
}
// function to display the elements in the stack
void display(struct Stack* stack) {
if (isEmpty(stack)) {
printf("Stack is emptyn");
return;
}
struct Node* temp = stack->top;
printf("Stack elements: ");
while (temp != NULL) {
printf("%d ", temp->data);
temp = temp->next;
}
printf("n");
}
// main function
int main() {
struct Stack* stack = (struct Stack*)malloc(sizeof(struct Stack));
stack->top = NULL;
push(stack, 1);
push(stack, 2);
push(stack, 3);
display(stack);
printf("%d popped from stackn", pop(stack));
printf("%d popped from stackn", pop(stack));
display(stack);
return 0;
}ith others. Click here ...
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team
