Computer Science, asked by advkulbir911, 5 months ago

A valuable pointing to a value of certain type can be made to point to a value / object of different type this is called

Answers

Answered by keyboardavro
0

Answer:

The declaration void *somePointer; is used to declare a pointer of some nonspecified type. You can assign a value to a void pointer, but you must cast the variable to point to some specified type before you can dereference it. Pointer arithmetic is also not valid with void * pointers.

Explanation:

Similar questions