What is the real difference between arrays and pointers?
Answer Posted / 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 |
Post New Answer View All Answers
What are the 3 types of structures?
What is a built-in function in C?
How can I insert or delete a line (or record) in the middle of a file?
What are identifiers c?
What is the difference between class and object in c?
How would you rename a function in C?
Is there a way to switch on strings?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
How can you access memory located at a certain address?
How can I write a function analogous to scanf?
How to write c functions that modify head pointer of a linked list?
What are keywords in c with examples?
How many parameters should a function have?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Explain what does a function declared as pascal do differently?