What is a pointer in C programming?

  • A control structure in C
  • A data type used for characters
  • A function that returns values
  • A variable that stores addresses
A pointer in C is a variable that stores the memory address of another variable. It's often used for dynamic memory allocation and accessing data indirectly.
Add your answer
Loading...

Leave a comment

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