Ask Question
18 October, 10:11

Let the function fun be defined as int fun (int * k) { * k + = 4; return 3 * (*k) - 1; } suppose fun is used in a program as follows: void main () { int i = 10, j = 10, sum1, sum2; sum1 = (i / 2) + fun (& i); sum2 = fun (& j) + (j / 2); } what are the values of sum1 and sum2

+2
Answers (1)
  1. 18 October, 13:14
    0
    Try and do your school work yourself.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Let the function fun be defined as int fun (int * k) { * k + = 4; return 3 * (*k) - 1; } suppose fun is used in a program as follows: void ...” in 📘 Mathematics if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers