Warum funktioniert das nicht?
#include <iostream.h>
#include <stdlib.h>
int main()
{
char name[50];
cout<<"Bitte gib das Password ein: ";
cin>>name;
if(name=='bb3000')
{
cout<<"Gut gemacht!"<<endl;
}
else
cout<<"Falsches Password!"<<endl;
system("PAUSE");
return 0;
}
Der Compiler sagt immer:
character constant too long;
incompatible types in assignment of 'int' to 'char[50]
??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ???
Bitte helft mir!
BadBoy3000 Gast |