Pointers and void pointer and precedence of & and * operators in pointers.
Pointers Definition:- A pointer is a variable that stores the memory address of another another variable. void pointer :-( it can contain address of any data type ) syntax:- void *pointer_name; example:- void *v_ptr; A void pointer does not have any data-type associated it with and can contain the address of any type of variable. example:- void v_ptr; char ch; int i; float fvar; v_ptr= &ch; v_ptr= &i; ...