此段代码是C语言编写,请添加注解strcpy(T_restax.mesg_type,S_cifcdetail.cust_status); strcpy(T_restax.acct_type,S_cifcdetail.deal_cert_type); strcpy(T_restax.self_certification,S_cifcdetail.finance_cert_type); strcpy(T_restax.holder_type,S_cifcdetail.telex_no); strcpy(T_restax.addr_country_code,S_cifcdetail.national_code1); strcpy(T_restax.city_en,S_cifcdetail.addr3); strcpy(T_restax.res_country_code,S_cifcdetail.national_code3); strcpy(T_restax.tin_issuedby,S_cifcdetail.national_code4); strcpy(T_restax.explanation,S_cifcdetail.base_bank_name); strcpy(T_restax.bir_country_code,S_cifcdetail.national_code2); strcpy(T_restax.bir_country_name,S_cifcdetail.addr2); strcpy(T_restax.nationality,S_cifcdetail.industry_code);
时间: 2024-04-20 08:22:51 浏览: 184
// 使用strcpy函数将S_cifcdetail结构体中的字段值复制到T_restax表的相应字段中
strcpy(T_restax.mesg_type, S_cifcdetail.cust_status); // 复制S_cifcdetail结构体中的cust_status字段值到T_restax表的mesg_type字段
strcpy(T_restax.acct_type, S_cifcdetail.deal_cert_type); // 复制S_cifcdetail结构体中的deal_cert_type字段值到T_restax表的acct_type字段
strcpy(T_restax.self_certification, S_cifcdetail.finance_cert_type); // 复制S_cifcdetail结构体中的finance_cert_type字段值到T_restax表的self_certification字段
strcpy(T_restax.holder_type, S_cifcdetail.telex_no); // 复制S_cifcdetail结构体中的telex_no字段值到T_restax表的holder_type字段
strcpy(T_restax.addr_country_code, S_cifcdetail.national_code1); // 复制S_cifcdetail结构体中的national_code1字段值到T_restax表的addr_country_code字段
strcpy(T_restax.city_en, S_cifcdetail.addr3); // 复制S_cifcdetail结构体中的addr3字段值到T_restax表的city_en字段
strcpy(T_restax.res_country_code, S_cifcdetail.national_code3); // 复制S_cifcdetail结构体中的national_code3字段值到T_restax表的res_country_code字段
strcpy(T_restax.tin_issuedby, S_cifcdetail.national_code4); // 复制S_cifcdetail结构体中的national_code4字段值到T_restax表的tin_issuedby字段
strcpy(T_restax.explanation, S_cifcdetail.base_bank_name); // 复制S_cifcdetail结构体中的base_bank_name字段值到T_restax表的explanation字段
strcpy(T_restax.bir_country_code, S_cifcdetail.national_code2); // 复制S_cifcdetail结构体中的national_code2字段值到T_restax表的bir_country_code字段
strcpy(T_restax.bir_country_name, S_cifcdetail.addr2); // 复制S_cifcdetail结构体中的addr2字段值到T_restax表的bir_country_name字段
strcpy(T_restax.nationality, S_cifcdetail.industry_code); // 复制S_cifcdetail结构体中的industry_code字段值到T_restax表的nationality字段
阅读全文