Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
51
int 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
push
Function · 0.70
print
Function · 0.70
pop
Function · 0.70
Tested by
no test coverage detected