Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int 型にメモリ ブロックを割り当て、すべてのビットを ON(1) に設定したいだけです。その後、そのメモリ ブロックを読み戻すにはどうすればよいですか。
int *type = malloc(sizeof(int); memset(type,~0,sizeof(int));
読み返しはただ、
int value = *type;
またvalue、すべてのビットが1に設定されています。
value