Call by address – Passing pointer in a function in C

When we pass a pointer as an argument to a function instead of any variable, then instead of value the the address of the variable is passed. In call by address the changes that taking places are permanently made in the address of the passed variable. Hence the changes that taking place in the called […]

Call by address – Passing pointer in a function in C Read More »