I am getting this error and i don't know what it means. this is my code, i do have header files but i didn't include them.
int main()
{
[LIST=1]
[*] cout<<"Welcome to guitar hero"<<endl;
[*] cout<<"Try and press the correct letters on the line"<<endl;
[*] cout<<"You will use the letters, Q,W,E,R,T, and 5"<<endl;
[*] system("pause");
[*] system("cls");
[*] char movem[5][60];
[*] for(int i=0;i<5;i++)
[*] {
[*] strcpy(movem[i]," 11 ");
[*] cout<<movem[i]<<endl;
[*] }
[*] for(i=58;i>0;i--)
[*] {
[*] for(int x=0;x<5;x++);
[*] {
[*] cout<<movem[x]<<endl;
[*] }
[*] strcpy(movem[1][i],"Q");[B]//says the error is here[/B]
[*] strcpy(movem[1][i+1]," ");
[*] }
[*]
[*] return 0;
[*]}
[/LIST]
[B]The error is
'strcpy' : cannot convert parameter 1 from 'char' to 'char *'[/B]