MCPcopy 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
39void 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
51int main()
52{

Callers 3

mainFunction · 0.70
validateLab2Function · 0.50
validateLab1Function · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected