73.2k views
3 votes
Which statement is false?It's necessary to include names of pointer arguments in function prototypes.A function receiving an address as an argument must define a pointer parameter to receive the address.The compiler does not distinguish between a function that receives a pointer and a function that receives a single-subscripted array.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.

User Lyudmyla
by
6.2k points

1 Answer

2 votes

Answer:

The answer is "It's necessary to include names of pointer arguments in function prototypes".

Explanation:

In method prototype, the declaration of the method specifics name and type of methods like arity, parameter type, and return type, but omits the method body, and the correct choices can be defined as follows:

  • A method which gets an address of the parameter must fix a pointer parameter for all the address to be received.
  • The code compiler doesn't differentiate the received method and a single subscribe array reference or function.
  • Its function should "know" how a single sub-scripted array has been received for which simulated references are required.
User Gbvb
by
6.4k points