What is the real difference between arrays and pointers?
Answers were Sorted based on User's Feedback
Answer / subhasmita swain
arrays stores a block of contigious memory .where as
Pointers are save the base address of the block of
memory,it may be a array of datas.pointers can resize them
shelves by pointing to a different block of memory,in
contrast arrays are fixed size.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / vipul singh
there is only a single difference between array and pointer,
in c lang array is limited(limited in the sense,define the
size at complie time) while pointer are upto memory location.
array and pointer both point to the initial
address.
if somebody says it is wrong so pls tell me the correct
difference.
im vipul from jaipur doing MCA 2nd sem.
my email id is vipul.fifteen@yahoo.com
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / ajay kumar
The name of the array represents the base address of the array. Thus, the name of the array can be used effectively as any other pointer to an array in accessing the elements of the array.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravi
Array is simply collecton of similar datatype and the pointer is a variable that represents the location of that data.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bhavani.p
Array is slow,array refer data in memory location.
Pointer is fast,pointer refer address to the memory location....
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Answer / saurabh agarwal
array name is a unmodifiable lvalue whereas pointer is a modifiable l value
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / shubham arora
1-through pointers we can access data directly while in array we have to traverse the whole array for accessing particular data.
2- due to above reason accessing through pointers is fast than
array.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anu yadav
array can be of any size whereas pointer is always of 2 byte......
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sachin.r
Arrays allocate the memory during compile time.
Pointers allocate the memory during runtime.
| Is This Answer Correct ? | 1 Yes | 0 No |
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
What is s or c?
Explain the binary height balanced tree?
What is the size of array float a(10)?
How can I send mail from within a c program?
An array name contains base address of the array. Can we change the base address of the array?
write a c program to check weather a particluar bit is set or not?
Is c easier than java?
Is linux written in c?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is wild pointer in c?
what is difference between #include<stdio.h> and #include"stdio.h"