#include#includestruct abc{ char aaa[10];}int main(){ struct abc mmm; char temp[10]="0903"; strcpy(mmm.aaa,temp);//C语言标准库函数,将第二个参数的内容复制到第一个参数 return 0;}