Код: Выделить всё
int main()
{
unsigned int i = 12;
printf("%lu", i); // This yields a compiler warning
}
Подробнее здесь: https://stackoverflow.com/questions/232 ... d-behavior
Код: Выделить всё
int main()
{
unsigned int i = 12;
printf("%lu", i); // This yields a compiler warning
}