How do I view what I have stored in an int x, after I have programmed and compiled this?
int x;
x = 3 / static_cast<int>(4.5 + 6.4);
Where will I see answerthat is now stored in x?
Does an int have decimal places or do I have to specify them, do they round or do I have to specify that?
I do not know how static_cast works and without seeing the x value...