Discover a world of knowledge and get your questions answered at IDNLearn.com. Ask your questions and get detailed, reliable answers from our community of knowledgeable experts.

How do you accumulate a value in a loop? Assume these two variables have been declared before the loop.

double input =0.0; double sum =0.0;

a. sum += input;
b. sum=input;
c. input = input + sum;
d. sum = sum + input;