gpt4 book ai didi

c - 使用 c 函数返回多个变量

转载 作者:太空宇宙 更新时间:2023-11-04 02:33:21 27 4
gpt4 key购买 nike

<分区>

我正在尝试使用结构通过以下代码返回多个变量。

有更好的方法吗?

这个技术怎么样,它有效率吗?

PS:我是嵌入式系统的新手,因此试图发现内存、性能和此类约束的最佳技术。

#include <stdio.h>
struct two func(int , int );

struct two {
int x;
int y;

};

int main() {
printf("values is\n %i\n %i\n ",func(33,44).x,func(33,44).y);
return 0;
}


struct two func(int x, int y ) {

struct two ex;
ex.x=x;
ex.y=y;

return ex;
};

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com