cpp-cheatsheet
cpp-cheatsheet copied to clipboard
Modern C++ Cheatsheet
I am pretty sure I spotted a typo in this great cheatsheet. Thank you for making it. Its been very helpful
would this cheat sheet incorporate C++20 features?
I guess a gitignore would add a lot more to your very informative content ! 😉
The switch case explanation is a bit misleading . There should be a break statement after every case for it to function as an if-else statement, otherwise it will evaluate...
added static_assert() to the assertions sections and specified the difference between it and assert()
I am just refreshing my c++ syntax knowledge has been unused for years. Isn't there an operator like '+' missing in the literals section at line > "hello" "world" //...
Duplicate words found
In order for the switch case shown to function as an if-else statement, a break statement was added after each case to separate them out.