union & struct & aggregate & constexpr
using aggregate initialization on classes and structs aggregate initialization syntax 1Type objectName = {argument1,...,...
using aggregate initialization on classes and structs aggregate initialization syntax 1Type objectName = {argument1,...,...
sizeof() a char* pointer's size is fixed at 4 bytes (on 32-bit system, and double it on 64-bit) and is independent of the vol...
sizeof() a char* pointer's size is fixed at 4 bytes (on 32-bit system, and double it on 64-bit) and is independent of the vol...
move constructor 123456789class MyString{ // pick implementation from Listing 9.9};MyString Copy(MyString& sour...
move constructor 123456789class MyString{ // pick implementation from Listing 9.9};MyString Copy(MyString& sour...
the difference of & used in reference and store address A reference & is a alias of variable and must be initialized ...
the difference of & used in reference and store address A reference & is a alias of variable and must be initialized ...
strlen vs sizeof strlen method is used to find the length of an array whereas sizeof method is used to find the actual size ...