What are the basic coding techniqies that a programmer should always follow in c++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What are the basic coding techniqies that a programmer should always follow in c++?

19th Aug 2017, 1:09 AM
AKSHAT GUPTA
2 Answers
+ 3
good memory management
19th Aug 2017, 1:16 AM
Jordan Chapman
Jordan Chapman - avatar
+ 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.
19th Aug 2017, 2:15 AM
aklex
aklex - avatar