What is the real difference between arrays and pointers?
Answer Posted / pravinash
array is collection of similar datatype. it is a static
memory allocation means we can not increment and decrement
the arry size once we allocated. and we can not increment
the base address, reassign address.
pointer is a dynamic memory allocation. we can allocate the
size as we want, assigning into another variable and base
address incrementation is allowed.
| Is This Answer Correct ? | 72 Yes | 9 No |
Post New Answer View All Answers
What are header files in c programming?
What is a program?
Tell me about low level programming languages.
What are the c keywords?
When should volatile modifier be used?
What are the types of pointers?
write a program fibonacci series and palindrome program in c
how to make a scientific calculater ?
What are unions in c?
What will be your course of action for a push operation?
List some of the static data structures in C?
What is function pointer c?
What are the 4 types of programming language?
How do we open a binary file in Read/Write mode in C?
What is the difference between the = symbol and == symbol?