What is the real difference between arrays and pointers?
Answer Posted / sankar s
array refer data in memory location , pointer refer address
to the memory location ,pointer refer the pointee
int *a;
int b[10];
a=&b;
where a is the pointer array b is pointee which point out
the starting memory location of an array.
| Is This Answer Correct ? | 24 Yes | 13 No |
Post New Answer View All Answers
what is different between auto and local static? why should we use local static?
Can we assign integer value to char in c?
Subtract Two Number Without Using Subtraction Operator
formula to convert 2500mmh2o into m3/hr
Can we change the value of static variable in c?
What is the default value of local and global variables in c?
What are global variables?
Why do we use main function?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What are predefined functions in c?
What is a stream in c programming?
How are strings stored in c?
What is s in c?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is assert and when would I use it?