I mean, if I want to store, for example, 11110011, I want to store it exactly in 1 byte in memory, and not in an array of characters.
Example: if I write 10001111 as an input, while scanf is used, it only gets the first 1 and stores it in a variable, and what I want is to get the whole value in a variable of type char to consume only one byte memory.
source
share