Why it is not possible to store an integer address in a float pointer in C?

We need to specify the type of the data whose address a pointer will hold, though all pointers are similar as they hold the addresses. The amount of space required by a pointer to store the address depends on the machine whether it is 32 bit or 64 bit. Suppose we have a pointer named […]

Why it is not possible to store an integer address in a float pointer in C? Read More »