answersLogoWhite

0

It is easy to tell with function printf:

int unknown_value;

...

printf ("unknown value is %d\n", unknown_value);

Note: the typical value-range for type integer is -32768..32767 (16 bits), or -2147483648..2147483647 (32 bits).

User Avatar

Wiki User

16y ago

What else can I help you with?