What is the real difference between arrays and pointers?
Answer Posted / swetha.j.n
Array is a group of elements.But pointer is not a group of
elements.
Array refer to the data in memory location.But pointer
refer to the address in memory location.
| Is This Answer Correct ? | 21 Yes | 2 No |
Post New Answer View All Answers
What are dangling pointers in c?
can any one tel me wt is the question pattern for NIC exam
What is the difference between volatile and const volatile?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why double pointer is used in c?
Explain enumerated types.
What are integer variable, floating-point variable and character variable?
What are the advantages of Macro over function?
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
Why should I use standard library functions instead of writing my own?
Can a local variable be volatile in c?
Can the curly brackets { } be used to enclose a single line of code?
What is data type long in c?
Is the exit() function same as the return statement? Explain.
What is register variable in c language?