Home » C Programming » Functions » Question
  1. Which of the following is true for "call by value" in C?
    1. Called function has access to original argument
    2. Called function creates a local copy of the passed argument
    3. Both A and B are true
    4. None of the above
Correct Option: B

pass by value means that called function is given the value of its arguments in temporary variables rathen than originals.



Your comments will be displayed only after manual approval.