What value will be stored in z if the following code is executed?
main() { int x = 5; y = -10, z; int a = 4, b = 2; z = x+++++y * b/a; }
Answer: C
No answer description available for this question.