I'm new to C++ and I'd like to start correctly. But I need to know what are the best practices for code sharing, like:
_ use int void (main)
instead of other statements;
_ use standard libraries when possible;
_ what are the naming conventions for C++? I've some saying that names like int nX, float fMyFloat, string sName
are not good for OOP or are deprecated. So, what would be good names?
_ the same for object members: shall I use "getFunction()", "setFunction()" and so?
If someone can point me a good "tutorial"...
Thanks!