If you want a variable that will hold more than one char ( which is called "string" or "array of char" you have to declare it like this:
char Password[] // this is also called "array" of char, You will learn this someday...;
and since you want a variable that will hold the input of the user, you do not need to assign any value to it... you should just declare it like this:
char Password[];
and in line 10 when comparing string values( which is a char greater than 1 ) you should enclosed PLP in quotes since this is a string and strings are always enclosed in quotes:
if( Password == "PLP" ) { ... }
And, if you want you can also declare using: string Password;.
But, you should first #include <string> to make that work..
That is just the same as declaring char Password[];