what is a void pointer?
Answers were Sorted based on User's Feedback
Answer / karthik
void *p;
its void pointer.
it can point to any pointer like int*,char*,etc....
that is use of void*.
| Is This Answer Correct ? | 3 Yes | 2 No |
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
wat is the difference between array and pointer?
What is the difference between c &c++?
Explain about C function prototype?
What is a const pointer, and how does it differ from a pointer to a const?
Write program to remove duplicate in an array?
which is the best antivirus and how to update it
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What is the use of #define preprocessor in c?
How can I return multiple values from a function?
What are identifiers and keywords in c?