C++ naming convention

Note: There's a lot of naming conventions, it's impossible to follow them all at once, so I've decided to pick couple of them. FV - favorite prefixes; HN - Hungarian Notation
Type FV HN Example
boolbbbStatus
charcccLetter
stringsstrsMessage
vectorvvList
listllList
intiiiApples
int (short)isiiApples
int (long)iliiApples
floatfffCash
doubledddCash
double (long)dlddCash
input streamisisisIn
input file streamifififFile
output streamosososIn
output file streamofofofFile
structoSoPerson
classoCoPerson