void pointer in c language

Answer:
A pointer which can points any type of data is known as void pointer or generic pointer. For example:
void main(){
    void *ptr;
}

No comments: