How do I find the representation of a Number for the system I am on?

link|improve this question

Read the manual? – Bo Persson Apr 13 '11 at 19:27
I'm still not sure what you are asking? Is this big-endian vs. little endian? – Jess Apr 13 '11 at 19:29
1  
The representation of what number in what? The CPU? A file? In memory? Are you asking about your system's endianess? Whether it's 2's complement for signed integers or not? Please be more specific. – thkala Apr 13 '11 at 19:31
3  
@NabinSur: In 99% of cases if you were using a 1's complement computer you'd know, trust me. Probably because it would need a whole room on its own, be as slow as a turtle and burn coal... – thkala Apr 13 '11 at 19:34
1  
@thkala: coal! In my day we didn't have any of your new-fangled coal, it was 10,000 slaves pulling on ropes or nothing. – Steve Jessop Apr 13 '11 at 19:51
show 8 more comments
feedback

6 Answers

up vote 1 down vote accepted

ISO C (C99), section 6.2.6.2/2, states that an implementation must choose one of three different representations for integral data types, two's complement, one's complement or sign/magnitude (although it's incredibly likely that the two's complement implementations far outweigh the others).

In all representations the only difference are negative numbers.

To get the negative representation for a positive number, you:

  • 2's Complement --> invert all bits, add one.
  • 1's Complement --> invert all bits.
  • sign/magnitude --> invert just the sign bit.

And i believe wiser people read Manuals.

link|improve this answer
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.

link|improve this answer
feedback

If you mean 'endianness', see this thread:

Can someone explain this "endian-ness" function for me?

link|improve this answer
feedback

The usual way is to store the number in memory, and then inspect the memory.

volatile number_type x;
x = 512.123;

typedef unsigned char const volatile uccv;
uccv *c = reinterpret_cast< uccv * >( & x );
std::cout << std::hex;
std::cout.fill( '0' );
for ( uccv *pen = c; pen != c + sizeof x; ++ pen ) {
    std::cout.width( 2 );
    std::cout << static_cast< unsigned >( * pen );
}
std::cout << std::dec << '\n';

Apologies for the volatile; I do not recall strict aliasing rules and don't want to look them up right now.

link|improve this answer
wow, what a heavy machinery to just test some bits, this is complete overkill. – Jens Gustedt Apr 13 '11 at 20:35
@Jens: Your solution works to differentiate between the representations that int may use. My solution prints any number in hex, which is more informative and covers a lot more ground. – Potatoswatter Apr 13 '11 at 20:39
well if you want to and think that the OP can do something with that. But also I can't imagine that in C++ it is as difficult to output any integer type as hex, using aliasing and stuff like that. As this question is also tagged C, the printf format is %x. – Jens Gustedt Apr 14 '11 at 5:33
feedback

To know the sign representation is actually quite simle. Look at the result of

(favoriteType)-1 & (favoriteType)3 

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.

link|improve this answer
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:

T value = ...; // for some numeric type T (int, short, long, double, float, etc.)
unsigned char *p = (unsigned char*) &value;
size_t i;

printf("%10s%8s\n", "address", "value");
printf("%10s%8s\n", "-------", "-----");
for (i = 0; i < sizeof value; i++)
  printf("%10p%8x\n", p+i, (unsigned int) p[i]);

For big- vs. little-endian, you could do something like

unsigned int value = 0x01;
unsigned char *p = (unsigned char *) &value;
if (p[0] == 1)
  printf("Little-endian\n");
else if (p[sizeof value - 1] == 1)
  printf("Big-endian\n");
else
  printf("Weird\n");

Better to RTM, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.