I'm writing a C++ app in Visual Studio 2005 and when I put:

itotalpennies = dchange * 100;
dtemp = itotalpennies/500;
itemp = itotalpennies\500;

it stops compiling with an error on that last line saying illegal escape character. Yeah they're the escape character in strings but I'm not using strings so what's up?