Computer Science, asked by hafeezullah7001, 6 hours ago

Q.No.3 Write the following program and execute it. What output does the program display? Expand the shorthand form of expression sum += i-- to show what it actually represents. State the total number of iterations made by the “for loop”? (10 Marks)



int main() {
int count=10;
int sum=0;

for(int i=count; i >= 0; sum += i--);

cout>>sum;
return 0; }​

Answers

Answered by gopujugunu123
0

Answer:

I can not know this Questionanswer

Similar questions