what is void pointer?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sanjay bhosale
Void pointer is the pointer which can point to any type of variable.
e.g
int a=10;
float b=20.00f;
void *ptr=null;
ptr = &a;
ptr = &b;
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the 'named constructor idiom'?
What are called c variables?
What is a nested formula?
Is javascript written in c?
What is the difference between GETS();AND SCANF();
what is recursion in C
What is n in c?
Write a program in c to replace any vowel in a string with z?
How can this be legal c?
Why we write conio h in c?
c program to print a name without using semicolon
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.