In programming, making one type treated as another.

char *foo = (char *) malloc( len );: the bold part casts the void pointer malloc return to a character pointer.

I was just watching a Seinfeld rerun, and Kramer said "I'm being typecast!", and as a programmer I thought, "wtf?". :)