Difference between Arrays and Pointers
What is the difference between Arrays and Pointers?
Answer.
Arrays use subscripted variables to access and manipulate data. Array variables can be equivalently written using pointer expression.
Pointers are used to manipulate data using the address. Pointers use * operator to access the data pointed to by them.