what is a void pointer?

Answers were Sorted based on User's Feedback



what is a void pointer?..

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

what is a void pointer?..

Answer / vadivel t

void pointer is a pointer which can be point to any kind of
data types

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

whats the use of header file in c?

2 Answers  


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  


How to declare a variable?

0 Answers  


How can I generate floating-point random numbers?

0 Answers  


#define f(x) main() { printf("\n%d",f(2+2)); }

5 Answers  






Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

0 Answers  


What are the different properties of variable number of arguments?

0 Answers  


Difference between fopen() and open()?

3 Answers   Aricent,


why we use "include" word before calling the header file. is there any special name for that include??????

1 Answers   TCS,


The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................

14 Answers   HOV Services, IBM, Potty,


What is pass by value in c?

0 Answers  


What is a pragma?

0 Answers  


Categories