What is the real difference between arrays and pointers?

Answers were Sorted based on User's Feedback



What is the real difference between arrays and pointers?..

Answer / mak

@ved: abey chutiye kyu bakchodi kar rha hai idhar....

Is This Answer Correct ?    1 Yes 0 No

What is the real difference between arrays and pointers?..

Answer / jayu

in that case i just want to tell u 1 thing that the array
needs continuous memory ,but pointer could be flexible in the,
memory allocation cases.

Is This Answer Correct ?    1 Yes 0 No

What is the real difference between arrays and pointers?..

Answer / nagendra kumar

pointer is dependent variable
array is not a dependent variable
array is a constant pointer type it is sequence of variables

Is This Answer Correct ?    1 Yes 0 No

What is the real difference between arrays and pointers?..

Answer / shailesh

u can access arrays by index where pointers are help to pass references to the object

Is This Answer Correct ?    0 Yes 0 No

What is the real difference between arrays and pointers?..

Answer / raja

answer#1

Is This Answer Correct ?    0 Yes 3 No

What is the real difference between arrays and pointers?..

Answer / 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

What is the real difference between arrays and pointers?..

Answer / ved prakash

There is NO DIFFERENCE between Array and Pointer... Both
are 100% Equivalent... Ya but Implementation wise Array
is more friendly than Pointer, Actually Internally array is
converted into Pointer by the compiler..

I can Write more if you are not getting my Point..
U can contact me at VED.COM@GMAIL.COM

Is This Answer Correct ?    26 Yes 89 No

Post New Answer

More C Interview Questions

What is the description for syntax errors?

0 Answers  


Is c procedural or functional?

0 Answers  


How many data structures are there in c?

0 Answers  


I came across some code that puts a (void) cast before each call to printf. Why?

0 Answers  


What is a null pointer in c?

0 Answers  


why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

0 Answers  


char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)

7 Answers   Mascot,


Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


What is indirect recursion? give an example?

4 Answers  


write a c program to store and print name,address,roll.no of a student using structures?

7 Answers  


What are the different types of linkage exist in c?

0 Answers  


What is dangling pointer in c?

0 Answers  


Categories