cfp 3 Flashcards
1
Q
c bool data type
A
booleans
2
Q
represents values that are either true or false
A
booleans
3
Q
header for booleans
A
stdbool.h
4
Q
use [ ] to specify a block of code to be executed, if a specified condition is true
A
if
5
Q
use [ ] to specify a block of code to be executed, if the same condition is false
A
else
6
Q
use [ ] to specify a new condition to test, if the first condition is false
A
else if
7
Q
use [ ] to specify many alternative blocks of code to be executed
A
switch