How do I find the representation of a Number for the system I am on?
feedback
|
|
ISO C (C99), section In all representations the only difference are negative numbers. To get the negative representation for a positive number, you:
And i believe wiser people read Manuals. | |||
|
feedback
|
|
AFAIK every modern computer uses binary when representing a number. Experiments have been made with other kind of computers, but they have failed to compete with binary. However, they are working a quantum computers which work completely different and represent numbers on a completely different way. | |||
|
feedback
|
|
If you mean 'endianness', see this thread: | |||
|
feedback
|
|
The usual way is to store the number in memory, and then inspect the memory.
Apologies for the | |||||||
feedback
|
|
To know the sign representation is actually quite simle. Look at the result of
Once you have understood how the three different sign representations work that C allows (see eg. Acme's answer), you will easily work out the values of such an expression for them. | |||
|
feedback
|
|
Architectural questions such as representation (word size, two's- vs. one's-complement vs. sign-magnitude) and endianness are best answered with hardware and/or OS and/or compiler documentation. You can use type punning to examine the individual bytes of a value:
For big- vs. little-endian, you could do something like
Better to RTM, though. | |||
|
feedback
|