you cannot assign a string to an integer. int x = 89; //ok. int x = "89"; //not ok.
char is really a type of int, and you cannot assign a string to a char either.
char x = "b"; // no good. char x = 12; //ok. char x = 'b'; //ok. note single quotes is one char, double quotes is one string.