If I create a void pointer, and malloc a section of memory to that void pointer, how can I print out the individual bits that I just allocated?
For example:
malloc allocates in bytes and not in bits. And whatever it is, your printf is trying to print an address in the memory.
malloc
printf