If that is the binary representation of the integer, then just typecast it or memcpy() it. char array[some_number]; int n = *(int *)array; ...
確定! 回上一頁