Computer Science, asked by TbiaSupreme, 1 year ago

What is the output of following program segment?Choose the correct option from the given options.
int a = 5, b = 10;
do
{
a = a + 1;
}while( a < = b);
printf(" %d", a);
(a) 10
(b) 9
(c) 11
(d) 15

Answers

Answered by DaringRobber
1
Hello friend...

The output is 11.

Hope this helps you
Similar questions