CBSE BOARD XII, asked by gkrathish2006, 7 months ago

Write the value that will be stored in variable num and sum after execution
of following code:
int sum=0, num = -2;
do
{
sum = sum + num;
num++;
}
while (num < 1);

Answers

Answered by shalinibhandari345
2

Answer:

I think you better Google that

Similar questions