Conditions:
Passing the tips that could the perform means the reminiscence location of the variables is handed to the parameters within the perform, after which the operations are carried out. The perform definition accepts these addresses utilizing pointers, addresses are saved utilizing pointers.
Arguments Passing with out pointer
After we go arguments with out pointers the modifications made by the perform could be carried out to the native variables of the perform.
Beneath is the C program to go arguments to perform with no pointer:
C
|
Values after swap perform are: 10, 20
Arguments Passing with pointers
A pointer to a perform is handed on this instance. As an argument, a pointer is handed as an alternative of a variable and its deal with is handed as an alternative of its worth. Consequently, any change made by the perform utilizing the pointer is completely saved on the deal with of the handed variable. In C, that is known as name by reference.
Beneath is the C program to go arguments to perform with pointers:
C
|
Values earlier than swap perform are: 10, 20 Values after swap perform are: 20, 10