#include<stdio.h>
#include<string.h>
struct str_opr//结构体,count记录x数组中元素的个数
{ //x为字符型指针数组
int count;
char*x[3];
};
void inition(str_opr*p)//对指针数组进行初始化
{
p->count=0;
int i;
for(i=0;i<3;i++)
p->x[i]=new char[20];
}
void insert(str_opr*p,char*q)//q接收一个字符串,并把这个字符串插入到x中
{
strcpy(p->x[p->count],q);
(p->count)++;
}
int main()
{
str_opr str;//定义了结构体变量
inition(&str);
char hj[20];int i;
char*q=hj;//q接收一个字符串数组
while(str.count!=3)//循环,是为了给x数组赋值
{
cout<<"请输入插入的名字"<<endl;
gets(q);//系统函数,从键盘输入字符串
insert(&str,q);
cout<<"插入成功"<<endl;
}
for(i=0;i<str.count;i++)//输出各个字符串
puts(str.x[i]);
cout<<str.count;
cout<<endl;
return 0;
}