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 <<