1.

What Is A Void Pointer?

Answer»

When we DECLARE a variable as a POINTER to a variable of type void, it is KNOWN as void pointer. ANOTHER name for it is generic pointer.

In general we cannot have a void type variable,but if the variable is of void type it do not point to any data and due to this it cannot be de-referenced.

When we declare a variable as a pointer to a variable of type void, it is known as void pointer. Another name for it is generic pointer.

In general we cannot have a void type variable,but if the variable is of void type it do not point to any data and due to this it cannot be de-referenced.



Discussion

No Comment Found