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
1297
problems.
Stats
31.9k
EtPoint
10.2k
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
Can I get reference of an object with address of member variable in C++?
What is the design purpose of iterator_traits?
C++ declare a move/copy operation will suppress generation of related operations?
Are there any difference in empty parentheses (“T()”) and empty braces (“T{}”) when used as initializers?
const (but not constexpr) used as the built-in array size
What is the difference between iterator and v.begin() method in STL? [duplicate]
Deleting objects from memory
Why is Signed Overflow due to computation still Undefined Behavior in C++20
Is it safe to compare const char* with == in C/C++? [duplicate]
Why is it ok in C++ to define a member function in a header but not a free function?