How can a structure be passed to a function in C?
- By creating a copy inside the function
- By reference
- By using global variables
- By value
A structure can be passed to a function in C by reference (using a pointer or passing the address of the structure). This allows the function to modify the original structure's contents.
Loading...
Related Quiz
- What is the difference between an array and a pointer in the context of C programming?
- When a function receives a pointer as an argument, it can modify the ________ that the pointer points to.
- You are developing a library of mathematical functions. How can you design the library to allow users to apply custom operations on data without modifying the library code?
- What is the primary purpose of using typedef in C programming?
- You are working on an application that requires fast data retrieval times. What method of file access would be most suitable?