what is meant by the "equivalence of pointers and arrays" in
C?
Answer Posted / sameer
name of array(without subscript) points to the first
location of array.
eg. a[10].
a points to first location of array.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Can we increase size of array in c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What does sizeof function do?
Is malloc memset faster than calloc?
What is ctrl c called?
What would be an example of a structure analogous to structure c?
What is the use of printf() and scanf() functions?
What is the purpose of 'register' keyword in c language?
What is the code in while loop that returns the output of given code?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What does printf does?
Why is #define used?
What is static identifier?
Compare array data type to pointer data type