InterviewSolution
Saved Bookmarks
| 1. |
What is a pointer in C? |
|
Answer» A pointer is a variable that stores or POINTS to ANOTHER variable's address. The VALUE of a variable is STORED in a normal variable, WHEREAS the address of a variable is stored in a pointer variable. |
|