Thread: var names
View Single Post
Old May 8th, 2006, 2:40 PM   #13
Cache
Hobbyist
 
Join Date: Sep 2005
Posts: 263
Rep Power: 4 Cache is on a distinguished road
I usually start the variable names with the first letter(s) of it's type.

e.g:
char chLetter;
char szText[10];
char* pszText;
std::string strText;
int iMax;
bool bIsSomething;
... ect.
Cache is offline   Reply With Quote