C/C++ variable naming convention...

homercles337

Diamond Member
Dec 29, 2004
6,340
3
71
In C/C++ i use the variable naming convention where the first letter (or couple letters) are used to indicate the variable type. E.g., int iVarInt, iFoo; or double dVarFoo; I started doing this years ago and cant remember what its called. Anyone know? Grazie.
 

homercles337

Diamond Member
Dec 29, 2004
6,340
3
71
Yea, i guess thats it. I think im using a specific variant though because "Hungarian notation" didnt set off any memories. Anyway, yea that must be it. Grazie! :)
 

Nothinman

Elite Member
Sep 14, 2001
30,672
0
0
It's a combination of two styles, annoying redundancy coupled with StudlyCaps or CamelCase.