C语言中返回值的示例分析
更新:HHH   时间:2023-1-7


这篇文章给大家分享的是有关C语言中返回值的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

函数返回值定义的结构在<cstdlib>,其中有两个成员。为 div_t:int quot; int rem;

如何使用div() 函数:

#include <stdio.h>

#include <stdlib.h>

int main() {

div_t output;

output = div(27, 4);

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

printf("Remainder part of (29/4) = %d \n", output.rem);

output = div(27, 3);

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

printf("Remainder part of (30/3) = %d \n", output.rem);

return(0);

}

编译和运行上面的程序,产生如下结果:

Quotient part of (29/ 4) = 7

Remainder part of (29/4) = 1

Quotient part of (30/ 3) = 10

Remainder part of (30/3) = 0

感谢各位的阅读!关于“C语言中返回值的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

返回web开发教程...