Tagged Questions
1
vote
5answers
225 views
unused memory using 32 bit integer in C
I have the folowing struct of integers (32 bit environment):
struct rgb {
int r;
int g;
int b;
};
Am I correct in saying that, since rgb component values (0-255) only require 8-bits(1 ...
0
votes
4answers
396 views
In java is it possible to pack a integer number that is expected not to be negative & be final (not overflow) into a short?
"Unsigned int" into a short and back. Is this possible? How to do it if so?
Grrrr. I forgot how signed numbers are implemented. The question makes no sense. Thanks anyway. I was going to downvote ...