Home » C++ Programming » Introduction » Question
  1. What will happen when we use void in argument passing?
    1. Maybe or may not be return any value to its caller
    2. It will not return value to its caller
    3. It will return value to its caller
    4. All of above
    5. None of these
Correct Option: B

As void is not having any return value, it will not return the value to the caller.



Your comments will be displayed only after manual approval.