What is the real difference between arrays and pointers?
Answer Posted / santosh
array is refered directly to the elements.
but in pointers we refers to address of the elements but not
elements . indirect calling of the elements.
| Is This Answer Correct ? | 155 Yes | 26 No |
Post New Answer View All Answers
What is difference between array and structure in c?
Explain which function in c can be used to append a string to another string?
What is variable declaration and definition in c?
How to create struct variables?
Explain what is the best way to comment out a section of code that contains comments?
What is the difference between declaring a variable and defining a variable?
Tell me when would you use a pointer to a function?
What does the c preprocessor do?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is the heap in c?
Explain what is meant by high-order and low-order bytes?
When c language was developed?
What is pointer to pointer in c language?
Why are algorithms important in c program?