C++
Programming and Technical
General Ability
General Knowledge
When should you use a const reference parameter?
a) Whenever the data type might be many bytes.
b) Whenever the data type might be many bytes,
the function changes the parameter within its
body, and you do NOT want these changes to
alter the actual argument.
c) Whenever the data type might be many bytes,
the function changes the parameter within its
body, and you DO want these changes to alter
the actual argument.
d) Whenever the data type might be many bytes,
and the function does not change the parameter
within its body
Read Solution (Total 0)
C++ Other Question