0
What are the basic coding techniqies that a programmer should always follow in c++?
2 Respostas
+ 3
good memory management
+ 3
Be cache aware, it is important that you optimize for the CPU cache and avoid cache misses. It's also important to be aware of modern C++ concepts, such as smart pointers, so you can avoid memory leaks, handle leaks, and other common bugs.