就是比如我有两个结构体struct term { int coef; int exp; };struct node { int CO; int EX;int as; };还有一个term的结构体数组:struct term p1_terms[] = { 10, 1000, 5, 14, 1, 0 } ;我想把term的结构体数组的元素赋值给node中的前两个变量,也就是说,根据数组, term的第一个结构体的coef应是10,exp是1000。 我想让它的这两个值复制到node结构体中, 即CO是10, EX是1000, as任然保持原值,以此类推,把整个term数组的值赋值到node结构体中。该怎么做?
添加回答
举报
0/150
提交
取消