Casting is basically converting one data type to another. You do it by typing (newtype)variable;. Example:
Code:
int theInt = 90;
char theChar = (char)theInt; // theChar now holds the ASCII equivalent of theInt