MCPcopy Create free account
hub / github.com/3rfaan/courses / main

Function main

C/freeCodeCamp/Data Structures/stack-array.c:51–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51int main()
52{
53 push(2);
54 print();
55
56 push(5);
57 print();
58
59 push(10);
60 print();
61
62 pop();
63 print();
64
65 push(12);
66 print();
67}

Callers

nothing calls this directly

Calls 3

pushFunction · 0.70
printFunction · 0.70
popFunction · 0.70

Tested by

no test coverage detected