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