What is the real difference between arrays and pointers?
Answer Posted / revathi
Array supports static memory allocation in the sense the memory size is allocated before it can use
Pointer supports dynamic memory allocation in the sense the memory is resized
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Compare and contrast compilers from interpreters.
What does typedef struct mean?
what is the role you expect in software industry?
What is your stream meaning?
What is scope of variable in c?
What does it mean when a pointer is used in an if statement?
What is volatile variable how do you declare it?
What is function definition in c?
What is "Hungarian Notation"?
Why c is called top down?
Can we assign integer value to char in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Why shouldn’t I start variable names with underscores?
How to delete a node from linked list w/o using collectons?