In C language, why is the storage form of integer data in memory123 00000001111? How is this worked out?
Data is stored in a computer in binary form. Convert to binary, in C language,11011,the integer data is 16 bits, that is, 16 bits. For positive integers, the high-order insufficient complement of 0 means that 123 is 00000001111.