I have a class

class C
{};

how may I make it possible to do something like this
int main()
{
C a;
a = (C)1/a;
return 0;
}

the "(C)1" I have trouble with.

Thanks in advance!