MCPcopy Create free account
hub / github.com/SR-Sunny-Raj/Hacktoberfest2021-DSA / POP

Method POP

11. Stack/MenuDrivenStack.java:41–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

39 a[top] = val;
40 }
41 void POP()
42 {
43 if (STACK_EMPTY())
44 return;
45 System.out.println("POPED VALUE = "+a[top--]);
46 }
47 void SHOW()
48 {
49 System.out.print("STACK IS : ");

Callers 1

mainMethod · 0.95

Calls 1

STACK_EMPTYMethod · 0.95

Tested by

no test coverage detected