程序填空:将字符数组s2中存储的字符串复制到字符数组s1中(要求用指针,不要用函数strcpy)。 : #include using namespace std; int main( ) {char s1[20],s2[20],*p_s2=s2,*p_s1=s1; cout< 请输入字符串:"; gets(p_s2); while(___________________________) { ___________________________; p_s1++; p_s2++; } ___________________________; puts(s1); return 0; }