Breaking News
Loading...

what is void pointer?

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;
}
Newer Post
Previous
This is the last post.

1 comments:

 
Toggle Footer