char fullname[256]="Value=";
char str[10];
int i;
for (i=0;i<10;i++) {
itoa(i,str,10);
lr_save_datetime("%Y%m%d%H%M%S",DATE_NOW+TIME_NOW,"mydates");//获取系统时间
strcat(fullname,lr_eval_string("{mydates}"));//将系统时间和fullname值拼接
strcat(fullname,str);//把系统时间和i变量拼接
lr_log_message("%s",fullname);