Computer Science, asked by sudisumanth14, 7 months ago

value of void pointer in c​

Answers

Answered by Anonymous
2

Answer:

The void pointer in C is a pointer which is not associated with any data types. It points to some data location in the storage means points to the address of variables. It is also called general purpose pointer. In C, malloc() and calloc() functions return void * or generic pointers.

Similar questions