void pointer in C
When we declare a pointer we specify its type which will be same as the type of the variable whose address the pointer will contain. For example if we will declare an integer pointer then it can contain the address of an integer variable only. Take below example. int *p,a; char b; p=&a; //valid p=&b; …
