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
1179
problems.
Stats
29.7k
EtPoint
9.7k
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
std::is_trivially_copyable is too strong, what shall I use instead?
How do I set the precision of a float variable in c++
why is_standard_layout gives true here?
How to make a conversion from std::string_view to std::string
How does std::sort handle NaN values?
Typeinfo how to get the name/id of the class in a polymorphic collection?
reusing object's space by another object
What is the special status of the value 0 in c++?
const auto& for storing functions results, is it worthwhile?
Is it not necessary to result in UB when using a glvalue of type char to access an object of another type