char two_character_string[2];
// Nul terminate functions looking for c strings absolutely require this-
// Otherwise it will spin through memory until it does find a '\0'
two_character_string[1] = '\0';
// store my character, c
two_character_string[0] = c;
LCDString(two_character_string);