dr inż. Jarosław Forenc 9/46
Podstawy informatyki 2 Wykład nr 2
struct stos *push(struct stos *top, struct element data) {
struct stos *wsk;
wsk = (struct stos*) malloc(sizeof(struct stos)); wsk->next = top; wsk->data = data;
return wsk;
}
top = push(top,data);