Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Stack
Class
Stack
Stack/stack_implementation_using_array.c:3–8 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
#include <stdio.h>
2
#include <stdlib.h>
3
struct Stack
4
{
5
int size;
6
int top;
7
int *S;
8
};
9
void create(struct Stack *st)
10
{
11
printf(
"Enter Size"
);
Callers
2
balanced_parentheses
Function · 0.90
dijkstras_two_stack_algorithm
Function · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected