+ 2
Pointeur in c
how to manipulate strings using pointeurs
2 Antworten
+ 2
When we pass a pointer as an argument instead of a variable then the address of the variable is passed instead of the value. So any change made by the function using thepointer is permanently made at the address of passed variable. This technique is known as call by reference in C.
+ 2
i get it thank you its helpful