what are control construct in C program
Answers
Answered by
0
Some control constructs are selection statements meaning that it selects which code to execute. Other control constructs are loops, where the control construct determines how many times the loop will execute. C keywords related to selection statements include: if , else , switch , case , break , default .
Similar questions