what is meant by the "equivalence of pointers and arrays" in
C?
Answers were Sorted based on User's Feedback
Answer / 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 |
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is the use of void pointer and null pointer in c language?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How do I send escape sequences to control a terminal or other device?
What is the collection of communication lines and routers called?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What is #include cctype?
Explain what is the difference between far and near ?
In which header file is the null macro defined?
I heard that you have to include stdio.h before calling printf. Why?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f