S
Smithers
int k = 8;
elsewhere in the code, I need to k to be -8.
I could do this:
int negativeVal = 0 - k;
is there a better way?
Thanks!
elsewhere in the code, I need to k to be -8.
I could do this:
int negativeVal = 0 - k;
is there a better way?
Thanks!