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
1230
problems.
Stats
30.6k
EtPoint
9.9k
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
Does GCC 7.3 contain all c++17 features?
How is 'pass by reference' implemented without actually passing an address to a function? [closed]
memcpy from one type to another type. How do we access the destination afterwards?
why use std::atomic if it still requires a mutex to work properly [duplicate]
Casting an anonymous array initializer list
std::reference_wrapper v.s. int&
Selecting overload to reference-accepting function
Any reason why 0.0/0.0 makes negative nan in C++?
What does __attribute__ ((aligned(x))) do?
Why do designated initializers zero-initialize the data members?