Question

What is the value of result after the following C++ statements execute?
int a{4};
int b{12};
int c{37};
int d{51};
int result{d % a * c + a % b + a};
a. 119
b. 51
c. 127
d. 59

Answer

This answer is hidden. It contains 6 characters.