Blackboard
XCO
X
Remaining Time: 44 minutes, 00 seconds.
Question Completion Status:
6
11
14 15 16
Moving to another question will save this response.
Question 15
From the code snippet of function as shown below, what will be the output for the variable D?
#include <stdio.h>
int func1(int x, int y, int z)
{
return ((x+y)*z);
}
int main()
{
int A=5, B=6, C=7, D=0;
D = func1(A, B, C);
printf("D=%d", D);
return 0;
}
A. 12
B. 75
C. 11
D. 77