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

Example Analysis of return value in C language

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

Share

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

This article shares with you the content of an example analysis of return values in the C language. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

The structure of the function return value definition is in, which has two members. For div_t:int quot; int rem

How to use the div () function:

# include

# include

Int main () {

Div_t output

Output = div (27,4)

Printf ("Quotient part of (29 / 4) =% d\ n", output.quot)

Printf ("Remainder part of (29thumb 4) =% d\ n", output.rem)

Output = div (27,3)

Printf ("Quotient part of (30 / 3) =% d\ n", output.quot)

Printf ("Remainder part of (30amp 3) =% d\ n", output.rem)

Return (0)

}

Compile and run the above program to produce the following results:

Quotient part of (29 / 4) = 7

Remainder part of (29ax 4) = 1

Quotient part of (30 / 3) = 10

Remainder part of (30Accord 3) = 0

Thank you for reading! This is the end of this article on "sample Analysis of return values in C language". I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it for more people to see!

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: 218

*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