About 4,630,000 results
Open links in new tab
  1. Stack in C - GeeksforGeeks

    Jul 31, 2025 · In this article, we will learn how to implement a stack in the C programming language. We will also look at some of its basic operations along with their time and space …

  2. How to Implement a Stack in C With Code Examples

    Jul 23, 2025 · Learn how to implement a stack in C programming using arrays or linked lists. Step-by-step guide with code, functions, and memory management tips

  3. Stack Program in C - Online Tutorials Library

    Following is the implementation of basic operations (push (), pop (), peek (), isEmpty (), isFull ()) in Stack ADT and printing the output in C programming language ?

  4. Stack Implementation in C - Techie Delight

    Sep 18, 2025 · This articles covers stack implementation in C. A stack is a linear data structure that serves as a collection of elements, with three main operations: push, pop and peek.

  5. Stack Implementation Using Arrays in C – Learn Programming

    Sep 21, 2024 · Push: Add an element to the top of the stack. Pop: Remove the element from the top of the stack. In this program, we will implement a stack using arrays. We will also …

  6. Stack Implementation Using Array in C - W3Schools

    We will cover the two primary operations performed on a stack: pushing an element (adding to the stack) and popping an element (removing from the stack). First, we need to define the …

  7. Stack Data Structure and Implementation in Python, Java and C/C++

    A stack is a useful data structure in programming. It is just like a pile of plates kept on top of each other. In this tutorial, you will understand the working of Stack and it's implementations in …