True or False 1 All arguments to C function calls are passed
True or False
1) All arguments to C++ function calls are passed by value.
2) The statements [4] refers to the fourth element of arrays.
3) In C++ all arrays are passed as arguments to a function by value.
4) In C++ it is possible to have a pointer to another pointer.
Solution
1) All arguments to C++ function calls are passed by value. False (Pass by reference also possible)
2) The statements [4] refers to the fourth element of arrays. False ([4] refers 5th element of array)
3) In C++ all arrays are passed as arguments to a function by value. False (pass by address )
4) In C++ it is possible to have a pointer to another pointer.True (pointer to a pointer is a form of multiple indirection or a chain of pointers)
![True or False 1) All arguments to C++ function calls are passed by value. 2) The statements [4] refers to the fourth element of arrays. 3) In C++ all arrays are True or False 1) All arguments to C++ function calls are passed by value. 2) The statements [4] refers to the fourth element of arrays. 3) In C++ all arrays are](/WebImages/19/true-or-false-1-all-arguments-to-c-function-calls-are-passed-1042030-1761541417-0.webp)