#include #include "Stack.h" int main(void) { Stack s = StackNew(); StackPush(s, 6); StackPush(s, 8); int item = StackPop(s); printf("%d\n", item); }