Name: Anonymous 2010-07-01 21:10
To make things clearer for myself as I learn C, I do casts like this:
#define cast(x) (x)
cast(unsigned int)time(NULL);
Is it considered bad style or anything?
#define cast(x) (x)
cast(unsigned int)time(NULL);
Is it considered bad style or anything?