Assume the following variable definitions int a = 5, b = 12; double x = 3.4, z = 9.1. What are the values of the following expressions?
a) x * a.
b) static_cast(x) * static_cast(z).
c) static_cast(x * z).
d) static_cast(b).