C Tutorial/printf scanf/printf hexadecimal — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
X: Unsigned integer in hexadecimal form, and the hexadecimal characters A, B, C, D, E, and F printed in uppercase.
#include <stdio.h>
main()
{
int i = 100;
printf(" %X\n",i);
}
64
x:Unsigned integers in hexadecimal form, and the hexadecimal characters a, b, c, d, e, and f printed in lowercase.
#include <stdio.h>
main()
{
int i = 100;
printf(" %x\n",i);
}
64