The following complete program contains a function that sums the numbers 1-10 in
ID: 3655095 • Letter: T
Question
The following complete program contains a function that sums the numbers 1-10 inclusive; however, the sum of those numbers does not display correctly inside main; change the code so that main, which calls the function, will display the sum properly. The main function must not calculate the sum but must output the sum. Do not use global variables as part of your solution.
#include <iostream>
using namespace std;
void compute_sum(int); // (1) What does this line represent?
int main()
{
int sum = 0;
int n = 10;
compute_sum(n); // (2) What does this line represent?
cout <<
Explanation / Answer
#include using namespace std; int compute_sum(int); // (1) Define a integar function named "compute_sum" that takes 1 int parameter int main() { int sum = 0; int n = 10; sum = compute_sum(n); // (2) The value that the "compute_sum" function returns, is assigned to the variable "sum" inside main scope coutRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.