Hi! In MCQ-Pointers, I can’t understand Q2’s options B & C, can you please explain them in detail? Thanks!
MCQ-POINTERS Q2 - Options B & C
hey @jaynee
A c pointer of type void can be used to directly examine or modify
any object of any type
It means that a void pointer can point to variable of any data type.
A c pointer knows the types of pointers and indirectly referenced
data items at runtime
like normal variable, datatype of pointer is decided in runtime(execution time) as variables gets there memory during runtime only.