


How to return an array from a custom function in C language (detailed graphic and text explanation)
Recently I saw some questions from classmates, and one mentioned: How to return an array in a function?
Can I write a char * type return value directly in the custom function and return it directly? , the code is as follows:
## Directly returns the str array name (note that there is no need to add &, but Many students make this mistake)
But in fact, the running result is not normal. We try to output in the calling function, and we can see that the result is not the original content (of course your computer output Maybe it’s not like this yet)
is as follows:
local variable in a custom function. It is an array with one hundred bytes. Its life cycle will of course depend on where it is located. Together with the functions, as the saying goes, "One trick for the emperor and one courtier", with the end of the fun function call, various local variables in it will also be recovered by the system. Of course, the one hundred bytes of the str array will also be recovered, so The string "Hello www.dotcpp.com" was wiped out! Naturally, what you output in the main function will definitely not be the original content!
How about it, I can understand it!However, it is not over yet, some students still continue to ask, why can I change it to the following way of writing?
As shown below:
##Answer: In this case, although str is also The local variable is not an array, but a pointer, only four bytes. It stores the string "Hello www.dotcpp.com" in the constant area, but please note that this string is in the constant area, not The part that belongs to the fun function is readable by the whole program, so it still exists after return. What is returned is the value in str, which is the first address of the string "Hello www.dotcpp.com". It is a number, which is actually equivalent to Transfer the address of this string from str to p through the return value.
You can also use an analogy: before, only the fun function knew this string, but now it is about to die. Before dying, he confessed: "I am about to die, hurry up and put 'Hello www .dotcpp.com's treasure address (the first address of the string) is transferred to the main function!"
Then return and quickly return to the main function! Then it disappears...
Then, after the main function is obtained, you will know...
Can you understand it this way?
The later C language reverse analysis part will also involve the principles here, and you can learn and understand it in depth.
At the same time, in the next article we will explain to you how to implement array passing of custom functions!
Through the explanation in the previous article, I believe everyone has understood the problems and reasons of returning arrays directly. Today we will explain in detail the common methods of returning arrays in functions.
For this kind of problem, the application scenario is often to solve the problem of mutual communication between functions. For example, the result data processed in a function needs to be handed over to another function. Then Generally speaking, there are three types of summaries:
1. Directly use global variables: This method is the most convenient, but this method breaks the communication and encapsulation between functions. Thought, so its use is not recommended and is beyond the scope of today’s discussion.
2. Solution through dynamic memory allocation in the heap area: In C language, we usually use malloc to dynamically allocate memory in the heap area, using the heap area to "open now when used, manually after use" Take back” feature to achieve flexible management. It is a commonly used method in actual development, and it is also our main content today.
3. The caller passes in the array pointer: This method does not require the function return address, but directly passes in the array address when calling, and entrusts the callee to perform the operation. Since This local variable belongs to the caller itself, so even if the callee completes memory release, the array will not be affected.
Let’s experiment one by one. For the second method, since the memory is dynamically allocated in the heap area, the heap area does not want the local variables to be stored in the stack area in the previous lecture. The system will be based on its life cycle. Automatic recovery, but manual development and manual release, so that the problem can be completely avoided. See the example and effect below:
It should be noted that: remember to free it after use to prevent memory Give way!
The third method: Although the array is not returned in the function, it can also solve the array communication problem. The main idea is to define the array in the caller , and then pass in the address. Since the memory belongs to the caller, not the callee, it does not matter if the callee releases the memory after the call is completed. The example program and its effects are as follows:
The summary about the use of array transfer is generally as above. If you have any questions or doubts, please feel free to contact us. You can contact us!
Thank you everyone for reading, I hope you will benefit a lot.
Recommended tutorial: "C Language"
The above is the detailed content of How to return an array from a custom function in C language (detailed explanation with pictures and text). For more information, please follow other related articles on the PHP Chinese website!

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
