Understanding C++ Casts May 5, 2020 6 min read c++codingprogrammingpointer C++, being a strongly typed language, is strict with its types. And there are always cases when you need to convert one type into another, which is known as casting. Sometimes, the casting
(Almost) Everything You Need To Know About Pointers in C Apr 12, 2020 27 min read codinggeneralcpointerprogramming Know the fundamentals of pointers in C to better understand the quirks and enable writing efficient C