MCPcopy 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>
3struct Stack
4{
5 int size;
6 int top;
7 int *S;
8};
9void create(struct Stack *st)
10{
11 printf("Enter Size");

Callers 2

balanced_parenthesesFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected