int pop(){ int item; if(st_empty()) //presupunem ca nu exista elemente return -1; //cu valoarea -1 item = st.s[st.top]; st.top--; return (item); }