Computer Science, asked by lionsdj9043, 1 year ago

What is a null pointer? Whether it is same as an uninitialized pointer?

Answers

Answered by KameenaYaar01
2

Answer:

Uninitialized” means the variable holding pointer hasn't been assigned a value. “NULL” means that it has been assigned a value of 0. Some languages automatically initialize pointers as NULL when you declare them, some do not.

Similar questions