Assume that you have the following declarations:
double d = 123.456; int i = 789, j = -1; uint k = 10;
What is the type and what is the value of d + i
?
What is the type and what is the value of j + k
?
What happens with a promotion such as d = i;
?
What happens with a demotion such as i = d;
?
[ fromfile: types.xml id: None ]
Generated: 2012-03-02 | © 2012 Alan Ezust and Paul Ezust. |