Posts tagged "C++":
Cool C++ features
13 Dec 2024
I'm not mentioning stuff that got deprecated later on, or stuff that's trivial.
(...)UGRC hints
11 Nov 2024
As of now printing everything using printk
functions.
Memory Ordering in C++ and OS support (Linux)
11 Nov 2024
Some basic things to note:
(...)Classes in C++
01 May 2024
Classes are nothing but a collection of variables and member functions that are also called methods.
(...)References in C++
09 Dec 2023
C++11 introduced 5 types of objects; lvalues, rvalues, glvalues, prvalues, xvalues.
(...)Concurrency
05 Aug 2023
C++ 11: Threads
(...)CV Qualifiers
13 Jul 2023
cvqualifiers
(...)Enum Classes in C++
18 Jun 2023
Problems with regular enums:
(...)wtf is std::forward
18 May 2023
Most of the article was inspired from this brilliant answer from stackoverflow.
(...)Static variables and functions
13 Apr 2023
Initialised at the beginning of the program, before the main
function
is called. Stored in the data
section of the program if initialised or
bss
if not. Basically shares a location with a global variable.
OpenMP Optimizations
20 Oct 2022
Who knew parallelisation would be so easy!
(...)