what is void pointer?

Answer Posted / rajesh

Void pointer is the
pointer which itself is
null and can not be
interchanged by others.
Ex-
{
int *a;
void *b;

*a=*b; //valid
a=b; //invalid
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the disadvantages of external storage class?

847


How can I access an I o board directly?

872


What's a good way to check for "close enough" floating-point equality?

877


Is main an identifier in c?

880


Do you know what are the properties of union in c?

831


Can you assign a different address to an array tag?

939


Why pointers are used?

865


What are two dimensional arrays alternatively called as?

972


How can you avoid including a header more than once?

780


Where we use clrscr in c?

935


What are types of functions?

806


Why are algorithms important in c program?

880


What is the value of c?

818


What is array of pointers to string?

835


What is null in c?

789