C++中 结构体如何变为全局变量,我把结构体写在所有函数外面,在主函数中赋值,在其它函数中值没变化。

本人小白 求教
2024-12-14 07:32:39
推荐回答(2个)
回答1:

其他函数只能在调用时才能使用结构体的值啊

回答2:

struct person{int num;int age;};
person Zhang ={0,10};
void print(const person &p){printf(”%d,%d