MIPI_BaseC_WebinarFRTK/03_Lecture03/09_implicit_3_p25.c
2024-11-13 09:22:28 +03:00

13 lines
429 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int main()
{
unsigned int u = 50;
int i = -500;
int answer = i / u; // answer = 85899335.
printf("%d\n",answer);
// i будет приведен к беззнаковому типу и его
//значение будет равно 2^32-500 вместо -500, а результат
//деления будет приведен обратно к знаковому типу int
}