Single Choice Easy

QWhat is a double pointer in C?

ID: #7194 Pointer in C Language 151 views
Question Info
#7194Q ID
EasyDifficulty
Pointer in C LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A A pointer that can point to two different memory locations
  • B A pointer that stores a floating-point value
  • C A pointer that points to another pointer
  • D A pointer that can store two integer values
Correct Answer

Explanation

Answer: C

Explanation: A double pointer in C is a pointer that points to another pointer. It is typically used for dynamic memory allocation, where the first pointer points to a dynamically allocated memory block and the second pointer points to a specific location within that block.

Share This Question

Challenge a friend or share with your study group.