by JUANDENT
Am I dealing with dangling references?
|
|
[5 replies] Last: std::move() is required; copy elision can't be applied to member obj... (by JLBorges)
|
by Worldtreeboy
Address and pointer
|
|
[2 replies] Last: Thanks (by Worldtreeboy)
|
by nvthielen
ASCII to string
|
|
[10 replies] Last: Glad you found that... I was trying to say as much, but I assumed you... (by jonnin)
|
by Hawlong
What does this struct . do
|
|
[4 replies] Last: Thanks JLBorges , (by Hawlong)
|
by frek
Working with array (1,2)
|
|
[30 replies] Last: Don't worry, I don't use Big-O anyway. I prefer Big Mama (by zapshe)
|
by ruzip
Steps in Loop in C/C++
|
|
[7 replies] Last: ... and can also be used where a condition is required - eg with if an... (by seeplus)
|
by newbieg
AVX and other SIMD
|
|
[5 replies] Last: You could try looking at the generated code for parallel algorithms in... (by mbozzi)
|
by PacR
Help with iterator
|
|
[9 replies] Last: Possibly something like: #include <iostream> #include <list> class... (by seeplus)
|
by nvthielen
ifstream and put it in a string
|
|
[7 replies] Last: c++ : seeplus , thnx I works fine now. Tnx a lot (by nvthielen)
|
by helios
Bidirectional RPC
|
|
[5 replies] Last: I am not sure there is a major package that does this by design. The... (by jonnin)
|
by frek
std::unordered_map (1,2)
|
|
[20 replies] Last: note that a great deal of effort has been put into generating hash fun... (by jonnin)
|
by gabriel11
Enum & vector returns a "not declared in this scope" error when it's included in the header.
|
|
[4 replies] Last: Oh my gosh, how could I have missed that? Thanks again Peter, I apprec... (by gabriel11)
|
by nvthielen
CreateWindow(TEXT("Edit") get string input
|
|
[2 replies] Last: He, Genade tnx for the help. string totalString; totalString = ... (by nvthielen)
|
by JUANDENT
This trick allows a member template to be called as a "copy ctor": but why?
|
|
[3 replies] Last: Why is member template never called in this last case? because non-t... (by Cubbi)
|
by ruzip
Free up Global Pointers in C
|
|
[5 replies] Last: Thanks guys, I now got a better understanding of this matter. also th... (by ruzip)
|
by frek
Do we still need class template argument deduction guide in C++20?
|
|
[9 replies] Last: Yes, thanks. Here's an example that actually compiles: template <ty... (by mbozzi)
|
by Tima11
When I pass const char* as an argument in class constructor it changes its value.
|
|
[9 replies] Last: typically char is single quote: '1' I don't recall what happens when ... (by jonnin)
|
by Bubbles0012
How to input a 2d vector into a file
|
|
[1 reply] : Here's one way to do it, there are faster ways to write to disk, but t... (by newbieg)
|
by Bubbles0012
My 2d array is not out putting all the words (1,2)
|
|
[24 replies] Last: I really do suggest dumping the C library random functions and learnin... (by deleted account xyzzy)
|
by ruzip
Macro or #define the 'struct' keyword
|
|
[7 replies] Last: Thanks for the info guys. I decided to just go for typedef. (by ruzip)
|