What are void pointers?
Answers were Sorted based on User's Feedback
A void pointer is a pointer that has no associated data type with it. A void pointer can hold address of any type and can be typecast to any type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / Mayank Kumar Pandey
In C and C++, a void pointer is a generic pointer type that can point to any type of data. It is declared using the keyword 'void*'. However, it cannot be directly used to access the data it points to, as its type is unknown.
| Is This Answer Correct ? | 0 Yes | 0 No |
Are floats faster than doubles?
explain the concept of inheritance with an example?
Which collections are thread safe in java?
What’s the difference between unit, integration and functional testing?
How to make a write-only class in java?
What is the hashcode () and equals () used for?
How do you remove duplicates in java?
Tell me the programme for this @ 1 2 @ @ @ 1 2 3 4
5 Answers Accenture, iGate, IntoNET, Value Labs,
How do you sort a string in alphabetical order in java?
Why Java is a platform independent language?
What are non-access modifiers?
Why all programming languages have main as a execution starting point?