if/else problems

I am having beginner troubles with a personal project of mine for practice
i am wanting and if / else after being prompted for the user to type "continue"
I am using Dev c++

and this is what it looks like

38- ISO C++ forbids comparison between pointer and integer

char Cont[50];
cout<<"\n\n\n\n\n\n"<<"Type 'Continue' to continue";
cin>>Cont;
if (Cont=='Continue'){system ("CLS");}

i may have been over thinking this .
any pointers would be greatly apprectiated
Try to use if (!strcmp("Continue", Cont)){...
Thank you
It worked
Topic archived. No new replies allowed.