Code:
int main()
{
unsigned int m = 32;
printf("%x\n", ~m);
return 0;
}
can u explain how the 32 stored in a memory
according to me:-
-------------------
binary no-100000
here is only 6 bit
can u explain the representation of "32" in 32 bits form in a memory
by the way the ans of this :-ffdf
please explain why this ans comes
Comment