C++
C++ Smart Pointers
· ☕ 6 min read · 🦂 k4i

Smart pointer is a practice of RAII (Resource Acquisition is Initialization), we use a smart pointer to manage memory allocated on the heap. (here the “resource” is the allocated heap memory)

cin & cout is slow?
· ☕ 3 min read · 🦂 Kyle
is or why is cin, cout slow in C++?
cin & cout is slow?
Heap in C++
· ☕ 4 min read · 🦂 Kyle
learn how to use heap in C++
Heap in C++