C++
Programming and Technical
Programming
Definition
Difference between a array name and a pointer variable?
Read Solution (Total 1)
-
- 1. Array name stores collection of interrelated data items that share a common name.
Pointer is a variable that stores address of another variable.
2. Array member are accessed by using pointer arithmetic. - 10 years agoHelpfull: Yes(0) No(0)
C++ Other Question