What is the value returned by: (int) 9.9 - 1
Answers
Answered by
1
Explanation:
(int) means integer
So you get the integer value
That is, 8
Without (int) it would be 8.9
Similar questions