What does the 'NULL' pointer represent in C?

  • A pointer to a constant value
  • A pointer to a non-existent location
  • A pointer to the keyboard input
  • A pointer to the main function
The 'NULL' pointer in C represents a pointer that doesn't point to any memory location. It's often used to indicate that a pointer is not currently pointing to valid data.
Add your answer
Loading...

Leave a comment

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