User profile: seeplus

User info
User name:seeplus
History
Joined:
Number of posts:6600
Latest posts:

Where is const mandated in the Standard when binding an lvalue reference to an rvalue?
I don't think I've ever actually read the standard in over 30 years of using c++! Put simply you ca...

stack and heap
[quote] There is also a c++ stack object, that does not allow messing with the internal values (you ...

How to compare int class template value?
1) The default constructor can be: [code] CStr() : cstr(memset(new char[MAX_CSTR_SIZE], 0, MAX_CSTR...

Removing double quotes from Cstring
Since C++20 you can do this for L4: [code] erase(directory, '\"'); [/code] You can also do this: ...

Removing double quotes from Cstring
Why use CString and char arrays and not std::string? Perhaps sample input(s) and expected output wo...