Answer Posted / shruti
you do not need to declare a pointer to any array..
an array itself is a constant pointer..
a[10] is equivalent to *a.
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
What is #define in c?
Difference between goto, long jmp() and setjmp()?
What does main () mean in c?
What is null pointer constant?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is call by reference in functions?
What is the use of volatile?
Write a code to generate a series where the next element is the sum of last k terms.
Is there a built-in function in C that can be used for sorting data?
What is static volatile in c?
Describe the order of precedence with regards to operators in C.
What are the types of macro formats?
What is c token?
What are Macros? What are its advantages and disadvantages?
What are the differences between new and malloc in C?