Multiple choice technology programming languages

__________ pointer is a type of pointer of any data type and generally takes a value as zero

  1. Vptr

  2. Void

  3. Null

  4. Zero

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

A Null pointer is a pointer of any data type that does not point to any valid memory location and generally holds a value of zero. Vptr is a virtual table pointer, Void represents a pointer to an unspecified data type, and Zero is not a standard pointer type.