GRADED A+
✔✔Stack - ✔✔special type of linked list in which objects can only be added to and
removed from the top of the list (LIFO), the only item that can be seen is the top
✔✔PUSH - ✔✔add a new structure to the stack
✔✔POP - ✔✔remove a structure from the top of the stack
✔✔Queue - ✔✔Items are removed from a queue in the order in which they were
entered, FIFO
✔✔Enqueueing - ✔✔placing a new item on top of the queue
✔✔Serving - ✔✔removing an item from a queue
✔✔INSERT - ✔✔add a new structure into a linked list
✔✔typedef - ✔✔permits constructing alternate names for an existing C data type name,
making an alias
✔✔#ifndef - ✔✔is the most frequently used conditional preprocessor directive
✔✔0 - ✔✔By default, the first enumerated name in an enumerated list has a value of
____
✔✔?: - ✔✔A conditional expression uses the conditional operator, _____ and provides
an alternate way of expressing a simple if-else statement, ternary operator
✔✔goto - ✔✔provides an unconditional transfer of control to some other statement in a
program, also bad practice to use this
✔✔& - ✔✔bit-by-bit AND
✔✔| - ✔✔bit-by-bit inclusive OR
✔✔^ - ✔✔bit-by-bit exclusive OR
✔✔~ - ✔✔bit-by-bit one's complement
✔✔<< - ✔✔left shift
✔✔>> - ✔✔right shift