Code Example 4-1decimal a = 2.5m;decimal b = 4.0m;decimal c…
Code Example 4-1decimal a = 2.5m;decimal b = 4.0m;decimal c = 12.7m;int i = 4;int j = 8;int k = 17; (Refer to Code Example 4-1.) What is the value of x after the following statement is executed?decimal x = (decimal)i / (decimal)j;
Read Details