1 2 3 4 5 6 7 8 9
#include <stdio.h> main() { init(); push(3); push(4); push(1); while (!is_empty()) { printf("%d\n",pop()); } }
Nazaj...