Vidyalelo
C Programming · Q52

Control Structures

Programming · C Programming · question 52

Q52

What will be the value of sum after the following program is executed? void main() int sum=1, index = 9; do index = index – 1; sum *= 2; while( index > 9 );

A.
1
B.
2
Answer
C.
9
D.
0.5
E.
0.25

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board