I need help with a question
convert decimal number to binary -132.234
Given the following snippet of code:
int int1 = /* Use value from -132.234 */; unsigned int uInt1 = int1; float float1 = int1;
What are the binary values stored in each of the variables:
int1, uInt1, float1
value :-
int1 :- -132
uInt1 :- Garbage value
float1- -132
decimal to binary of -132.234
-10000100.00111011111001110111
I need help with a question convert decimal number to binary -132.234 Given the following snippet...