What is the advantage of using a pointer to a structure as a parameter to a funtion, instead of the structure itself?
-the code is easier to read
-it is more efficient because the structure is not copied
-there is no difference; it is a matter of style
-passing a structure as a parameter is not allowed
-the code is easier to read
-it is more efficient because the structure is not copied
-there is no difference; it is a matter of style
-passing a structure as a parameter is not allowed
Comment