2018年7月20日 — I think he wants to extract the four bytes from a long int. The cleanest way is to use a union. e.g. union { long int dw; unsigned char b[4]; } ...
確定! 回上一頁