新手求助,程序编译没有错误,运行之后出现tempfilr.exe程序出错,不知道该怎么改
程序编译没有错误,运行之后出现tempfilr.exe程序出错是为什么啊,该怎么改#include <iostream>
using namespace std;
int main()
{
void sort(char(*p)[5]);
int i;
char str[10][5];
char (*p)[5];
cout<<"input 10 strings:"<<endl;
for(i=0;i<10;i++)
cin>>str[i];
p=str;
sort(p);
cout<<"the sequence is:"<<endl;
for(i=0;i<10;i++)
cout<<str[i]<<endl;
return 0;
}
void sort(char(*s)[5])
{
int i,j;
char temp[5],*t=temp;
for(i=0;i<9;i++)
for(j=0;j<9-i;j++)
if(strcmp(s[j],s[j+1])>0)
{
strcpy(t,s[j]);
strcpy(s[j],s[+j+1]);
strcpy(s[j+1],t);
}
}