单项选择题有以下程序:#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]);}程序的运行结果是______。
单项选择题有以下程序:#include <stdio.h>int fun(int n){ static int t=1; int i=1;for( ; i<=n; i++)t* =i;return t;}main(){ int t=1,i;for(i=2;i<4; i++)t+=fun(i);printf( %d n ,t);}程序的运行结果是______。