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
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is the importance of c in your views?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is New modifiers?
What is malloc calloc and realloc in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is #include conio h?
Explain how can I make sure that my program is the only one accessing a file?
Which header file is essential for using strcmp function?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Explain setjmp()?
Why isnt there a numbered, multi-level break statement to break out
What are directives in c?
Explain the difference between ++u and u++?
Describe how arrays can be passed to a user defined function