User profile: tntxtnt

User info
User name:tntxtnt
Name:Tri Tran
Location:Houston, TX
Bio:I love Python but I code in C++
History
Joined:
Number of posts:126
Latest posts:

I want to be a programmer!
You can have some Amazon-high-rated free Python books http://inventwithpython.com/chapters/ ( http...

Turning numbers into text?
yes arrays of strings to store string literals like "zero", "one", "two", "ten", "fifteen", ..., "tw...

stl list item not removing
not sure if 'win' and 'lose' need to pass by reference though. But you shouldn't remove elements in ...

std::string to std::wstring with extended characters (unicode)
try putting an L before your wide string literal [code]std::string input = [b]L[/b]"Bancé";[/code]

Why are class members private by default?
one more reason not to use char array @.@