Which statement is false?

a) It’s necessary to include names of pointer arguments in function prototypes.
b) A function receiving an address as an argument must define a pointer parameter to receive the address.
c) The compiler does not distinguish between a function that receives a pointer and a function that receives a single-subscripted array.
d) The function must “know” whether it is receiving a sin-gle-subscripted array or simply a single variable for which it is to perform simulated call by reference.

a) It’s necessary to include names of pointer arguments in function prototypes.

Computer Science & Information Technology

You might also like to view...

According to the ISO 12207 standard, parties much agree to what items prior to an audit?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Given the code below

``` function Rectangle(x, y) { this.x = x; this.y = y; this.width = 40; this.height = 20; this.moveDown = function () { this.y += 5; }; } ``` Given the code above and suppose a Rectangle object named rectangleA has been created, (i) write a statement to change the x value of rectangleA to 150. (ii) write a statement to invoke the method moveDown() on rectangleA.

Computer Science & Information Technology