Comment: Re:I have an idea for the style guide (Score 1) 259
Seems handy when you have multiple variables with the same(ish) value:
double dSomething = 123.4;
int iSomething = dSomething;
char szSomething[100];
snprintf(szSomething, sizeof(szSomething), "%d", iSomething);