A void pointer is pointer which has no specified data type . The keyword ‘void’ is preceded the pointer variable because the data type is not specified . It is also know as generic pointer . The void pointer can be pointed to any type of variable address and data.
Eg:
Void main()
{
Void *p;
Int a;
P=&a;
}
how to print void pointer value
ReplyDeleteClick to see the code!
To insert emoticon you must added at least one space before the code.