Stack Handling in C
s = NULL;
if ( s != NULL ) ...
newtok-> link = s; s = newtok;or:
s = cons(newtok,s);
top = s; s = s-> link;
Contents    Page-10    Prev    Next    Page+10    Index