When passing an array to a function, what is actually passed to the function?
What will be an ideal response?
When a program is passing an array to a function (in a call statement), the address of the first element of the array is passed to the function.
You might also like to view...
The execution of a throw statement is referred to as:
a. catching a block b. trying a block c. handling an exception d. throwing an exception
What type of file compression is most commonly used in Linux distributions, such as CentOS 7?
A. zip B. archive C. gzip D. script
The number format symbol _____ separates the pattern for positive numbers from the pattern for negative numbers.
A. ?; B. ?# C. ?, D. ?.
Which statement is false?
a) The compiler uses function prototypes to validate function calls. b) Prior to ANSI C, C did not include function prototypes. c) A function prototype tells the compiler the type of data returned by the function, the number of parameters the function expects to receive, the types of these parameters and the order in which parameters of these types are expected. d) The designers of ANSI C++ borrowed the notion of function proto-types from the developers of C.