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
Why is c still so popular?
Why do we need a structure?
What is the purpose of realloc()?
Explain the difference between ++u and u++?
In C language, a variable name cannot contain?
How can I insert or delete a line (or record) in the middle of a file?
If I have a char * variable pointing to the name of a function ..
What are operators in c?
By using C language input a date into it and if it is right?
What is difference between constant pointer and constant variable?
What are the salient features of c languages?
How do you determine a file’s attributes?
What are reserved words with a programming language?
What is getch c?
Differentiate between calloc and malloc.