0 votes
in C Plus Plus by
What is generic pointer in C in C Language?

1 Answer

0 votes
by
In C void* acts as a generic pointer. When other pointer types are assigned to generic

pointer,

conversions are applied automatically (implicit conversion).
...