Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/3rfaan/courses
/ print
Function
print
C/freeCodeCamp/Data Structures/stack-array.c:39–49 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
37
}
38
39
void print()
40
{
41
int i;
42
43
printf(
"Stack: "
);
44
for (i = 0; i <= top; i++)
45
{
46
printf(
"%d "
, A[i]);
47
}
48
printf(
"\n"
);
49
}
50
51
int main()
52
{
Callers
3
main
Function · 0.70
validateLab2
Function · 0.50
validateLab1
Function · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected