Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem of not having multiple return values in C language

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how to solve the problem that there are no multiple return values in c language. I hope you will get something after reading this article. Let's discuss it together.

C language can only have one return value, want to get multiple return values, but do not want to or can not put them into an array, do not want to use global variables, we can use reference passing (pass by reference) method.

For example, we have the variable aQuery b, and we use a function to process them at the same time, and then return an and b. We can do this:

Int a = 5 is int b = 10 *, *, *

Method changeAandB:

Void changeAandB (int * p1, int * p2) {int a = * p1; int b = * p2; * p1 = + + a; * p2 =-- b; * p2 =-- * p2; / / No parentheses are needed here, but if (* p2)-- there must be parentheses}

In this way, we are actually changing the value of the corresponding address, so we do not return a value like the value passed.

After reading this article, I believe you have a certain understanding of "how to solve the problem that there are no multiple return values in c language". If you want to know more about it, please follow the industry information channel. Thank you for your reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report