Blackboard XC Remainder
FLIX NETFLIX
Question Complete
Moving to arithmetic responsibility
Question 15
From the code snippet of function as shown below:
#include<stdio.h>
int func_1(int x, int y, int z) {
return (x + y * z);
}
int main() {
int A = -5;
int B = 6;
int C = 7;
int D = 8;
D = func_1(A, B, C);
printf("%d", D);
return 0;
}
A. 12
B. 75
C. 11
D. 0.77