若有结构数组struct num one[2]={ {1,2,3},{4,5,6}};
有一函数void hanshu(struct num now)这里面,struct num是自己定义的结构体,相当于int ,now类似数学函数变量x。
在main里面使用函数时,需要吧结构体数组作为now。
如下:hanshu(one[2]);
这样就可以使用了。
与普通数组想对比,其实就可看出结构体的作用。struct num相当于int,你可以用struct num来定义一些内容。
若有结构数组struct num one[2]={ {1,2,3},{4,5,6}};
有一函数void hanshu(struct num now)这里面,struct num是自己定义的结构体,相当于int ,now类似数学函数变量x。
在main里面使用函数时,需要吧结构体数组作为now。
如下:hanshu(one[2]);
这样就可以使用了。
与普通数组想对比,其实就可看出结构体的作用。struct num相当于int,你可以用struct num来定义一些内容。