【技术】C语言传递指针到函数 About transfer pointer into function
About transfer pointer into function (C Language) In the main() function of our program, we often need to use some user defined functions to do our calculating work. For a user_function, we may transfer into several int variable, and return a variable. or, we may need modify a data array by calling a function. And return void. or, we may need modify a data array in a struct, and call a function to modify that data array. We need to transfer into the function the pointer of that struct containing our data array.
…