What is the real difference between arrays and pointers?
Answer Posted / johnson
Down at the lowest level, they both store addresses, there is
no difference. The difference is simply how the C language
allows you to use them, specially with multi dimensional
arrays. Single dimemsion arrays and pointers are practically
interchangeable.
| Is This Answer Correct ? | 37 Yes | 47 No |
Post New Answer View All Answers
Why do we write return 0 in c?
What is exit() function?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Give the rules for variable declaration?
What is local and global variable in c?
Explain the difference between exit() and _exit() function?
Distinguish between actual and formal arguments.
c language interview questions & answer
Differentiate Source Codes from Object Codes
What is external variable in c?
What are the usage of pointer in c?
How can type-insensitive macros be created?
What is the meaning of && in c?
What is typeof in c?
What are loops c?