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
What are the disadvantages of external storage class?
How can I access an I o board directly?
What's a good way to check for "close enough" floating-point equality?
Is main an identifier in c?
Do you know what are the properties of union in c?
Can you assign a different address to an array tag?
Why pointers are used?
What are two dimensional arrays alternatively called as?
How can you avoid including a header more than once?
Where we use clrscr in c?
What are types of functions?
Why are algorithms important in c program?
What is the value of c?
What is array of pointers to string?
What is null in c?