Call by reference doubt

Can I say that we can do call by reference via two methos:-
( FOR ALL DATATYPES )

M1 . f1 in code

M2 . f2 in code

Yes both are passed by reference as both functions get address of variable not value

Both points to the memory location of variable
Not copied the value

1 Like