Computer Science, asked by mastann222, 1 month ago

What is the Output of the following int sum = 14, if ( sum < 20 ) printf("Under ), else printf("Over printf("the limit).​

Answers

Answered by nithya353
0

Answer:

under

Explanation:

substitute sum = 14 in if block.

as 14 < 20, it is true and prints under. the else block will not be printed.

(if you find this answer helpful mark me brainliest)

Similar questions