if ( x == (char)'subject')
cout << "Du har rätt\n";
system("pause");
return 0;
}
What i want to do is to make like for example if i write subject then the if will be correct. but it doesnt seem to work with the 'subject' only 's' how can i make a char contain long words? or is there some other way?