Can you explain this moment? Why unsigned int doesn't convert to signed int.
signed int a = 100;
unsigned int b = 4294967295;
a-b; /// Why 'a' will be convert to unsigned? Explain pls
Can you explain this moment? Why unsigned int doesn't convert to signed int.
signed int a = 100;
unsigned int b = 4294967295;
a-b; /// Why 'a' will be convert to unsigned? Explain pls