+ 2
What are some tips for coding with c++??
4 Answers
+ 3
Always follow the rule of 3 and 5.
https://en.m.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)
+ 2
keep your files organized, make use of header files, and learn how to write template classes and functions, their shortcomings and when to use them. also, like with many other languages, explore the libraries available to you.
+ 2
@Christian
@Michelle
@Aklex
Thank you, for the tips!