Day 4 Recap Questions
- Which one is the logical “and” operator in C,
&&
or&
or both? - Which one is the logical “negation” operator in C,
~
or!
or both? - What is the result of evaluating
(34 + 2) / 40 || 80 > 'A' && 15 % 4
? - What does the keyword break do in a control structure?
- What does the keyword continue do in loops?
- How many times is the initialize statement in a for loop executed?