What is the real difference between arrays and pointers?
Answer Posted / sankar s
array refer data in memory location , pointer refer address
to the memory location ,pointer refer the pointee
int *a;
int b[10];
a=&b;
where a is the pointer array b is pointee which point out
the starting memory location of an array.
Is This Answer Correct ? | 24 Yes | 13 No |
Post New Answer View All Answers
What does typeof return in c?
What is operator promotion?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain pointers in c programming?
How can type-insensitive macros be created?
How can I do peek and poke in c?
Why enum is used in c?
What are run-time errors?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
How can I list all of the predefined identifiers?
What is malloc and calloc?
List the variables are used for writing doubly linked list program.
What is self-referential structure in c programming?
How can I do serial ("comm") port I/O?
What is meant by errors and debugging?