Si tu veux parler de l'affichage en base 16, utilise cette fonction:
----------
#include <stdlib.h>
char *itoa(int value, char *string, int radix);
Description
Converts an integer to a string.
itoa converts value to a null-terminated string and stores the result in string. With itoa, value is an integer.
radix specifies the base to be used in converting value; it must be between 2 and 36, inclusive. If value is negative and radix is 10, the first character of string is the minus sign (-).
Note: The space allocated for string must be large enough to hold the returned string, including the terminating null character (\0). itoa can return up to 17 bytes.
Return Value
itoa returns a pointer to string.
Borland C++ 5.0 Programmer's Guide
----------
(oh, joli le copier-coller...)