Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
eerorika
eerorika has asked
1
questions and find answers to
1308
problems.
Stats
32.1k
EtPoint
10.3k
Vote count
1
questions
1k
answers
About
C++ is a wonderful language. A collection of curious details:
A full-expression is not necessarily an expression at all.
void*
is not a pointer-to-object but it
is
an object pointer.
Member pointers are not "pointers".
Default initialisation may leave the object uninitialised.
Rvalue reference variables are lvalues.
std::move
doesn't move anything.
Function arguments cannot be arrays, but you can declare arguments to be arrays in which case they are "adjusted" to not be arrays.
eerorika questions
eerorika answers
Why is it bad practice to declare an int in a for loop? [duplicate]
Strong exception guarantee for std::unique_ptr<T>::reset
Data structure with type-specific, but without template
Why can I pass a reference to an uninitialized element in c++?
Why does && sometimes bind lvalues and other times not?
Boost Libraries that made it into the C++ standard
Loading large amount of binary data into RAM
Difference between an object and a variable in C++
Difference between __int32 vs int vs int32_t (again)
Why std::compare_three_way is not a template struct/functor