@tusharhigh
Answer:-- 111…..1011
Explaination: It does not matter wheater we are storing negative integer or positive integer it alway’s follows 2’s complement system .In case of positive value (+5) it directly stores it’s value in its binary format ie: 00 ….0000101 But in case of negative integer (-5) it stores in 2’complement form (111….101).
The role of datatype signed or unsigned comes into the picture when we are trying to access it.if we are using unsigned int value which is stored in memory will directly get converted in decimal format but in case of signed datatype value first converted in normal form and then it used.