单项选择题设有定义:struct{int n;float x;} s[2],m[2]={{10,2.8},{0,0.0}};则以下赋值语句中正确的是______。
单项选择题有以下程序:#include <stdio.h>#include <string.h>#include <stdlib.h>main(){ char *p1,*p2;p1=p2=(char*)malloc(sizeof(char)*10);strcpy(p1, malloc );strcpy(p2, p1+1);printf( %c%c n ,p1[0],p2[0]);}程序的运行结果是______。