Computer Science, asked by keshabsahoo183, 6 hours ago

a function using constant argument are passed by________​

Answers

Answered by ambar078
0

Answer:

Always use const on function parameters passed by reference or pointer when their contents (what they point to) are intended NOT to be changed. This way, it becomes obvious when a variable passed by reference or pointer IS expected to be changed, because it will lack const

Similar questions