What is the real difference between arrays and pointers?
Answer Posted / ajay kumar
The name of the array represents the base address of the array. Thus, the name of the array can be used effectively as any other pointer to an array in accessing the elements of the array.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is wild pointer in c with example?
What is c programming structure?
Why do we use return in c?
What is a program flowchart?
What is the difference between functions getch() and getche()?
How many bytes is a struct in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
How to write a code for reverse of string without using string functions?
What is array of structure in c?
What is getche() function?
How many bytes are occupied by near, far and huge pointers (dos)?
What is use of #include in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How can you increase the size of a statically allocated array?
What is binary tree in c?