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 |
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Find greatest of two numbers using macro
What is n in c?
What is main () in c?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
When should you use a type cast?
about c language
What are the different types of objects used in c?
Does free set pointer to null?
Explain what is the benefit of using enum to declare a constant?
What are the different types of linkage exist in c?