Is an array parameter is always "by reference" ?
Answer / sri
yes, passing array to a function is always call by reference
method because array name itself act as a pointer to its
first position.
| Is This Answer Correct ? | 2 Yes | 1 No |
what is difference between strcmp & palindrome?
Are there any problems with performing mathematical operations on different variable types?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is data type long in c?
How the processor registers can be used in C ?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
why programming language C is still used in operating system's kernel??
explain what are pointers?
What is function prototype in c language?
List out few of the applications that make use of Multilinked Structures?
What are the application of void data type in c?
How can I find the day of the week given the date?