What is the principle of character output 128 in C?
Do you want to know? A is an integer variable, accounting for four bytes. (For vc) %c output means the first byte is output. For example: 345 = 00101kloc-0/001(many zeros in front are covered with four words); Take out 011101,which is 89. //Try it if you don't believe me. Inputs int345 and 89 and output %c are the same.