Does call by reference actually exist in c
when dealing with arrays we often come across mechanism that seems to implement call by reference, of course, during function calls.
Is it not the violation of the fact that 'all function calls in c are by value only', or is there any mechanism other than call by reference and call by value that is being implemented?
kindly explain...