Thread
:
var names
View Single Post
May 8th, 2006, 2:40 PM
#
13
Cache
Hobbyist
Join Date: Sep 2005
Posts: 263
Rep Power:
4
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
View Public Profile
Find More Posts by Cache