What is a double pointer in C?

  • It is a pointer that cannot be modified
  • It is a pointer that has two asterisks **
  • It is a pointer that points to floating-point numbers
  • It is a pointer that points to two different memory locations
A double pointer in C is represented with two asterisks ** and is used to point to another pointer. It allows you to modify the pointer it is referencing.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *