Question

Which statement is false?
a) If a value should not change in the body of a function to which it is passed, the value should be defined const to ensure that it is not accidentally modified.
b) Attempts to modify the value of a variable defined const are caught at execution time.
c) One way to pass a pointer to a function is to use a non-constant pointer to non-constant data.
d) It is dangerous to pass a non-pointer into a pointer argument.

Answer

This answer is hidden. It contains 3 characters.