by vittorioc98
Initialize 2D char array by passing addresses
|
|
[3 replies] Last: #include <iostream> int main() { static char c1, c2, c3, c4; ... (by againtry)
|
by rozick1
create iterator to map value?
|
|
[8 replies] Last: Right, very nice! I treated it as if I knew nothing (apart from the m... (by jonnin)
|
by ccorkran
Object oriented programming menu troubles
|
|
[4 replies] Last: L74/75 - subchoice isn't zero based - it's one based. You need to subt... (by seeplus)
|
confusion on -> operator |
|
[10 replies] Last: seems to work C++ is one of those languages that just because some ... (by seeplus)
|
by newbieg
Class Factory
|
|
[7 replies] Last: Sorry, took a break from the internet for a bit. The key use that I ... (by newbieg)
|
by kailarob
Get() taking in newline
|
|
[4 replies] Last: Or even: #include <iostream> #include <fstream> #include <string> #... (by seeplus)
|
by learner999
Exractin 3D matrix from 4D
|
|
[2 replies] Last: @mbozzi ,yes, exactly. That's what I want. You helped me :) Thank you ... (by learner999)
|
by cplus2303
General Tree
|
|
[1 reply] : A /\ B C D E F G / \ \ \ /\ ... (by cplus2303)
|
by vanitution
"for" loop not running program multiple times
|
|
[9 replies] Last: I agree. All what you said is true. However I wanted to be clear in or... (by Geckoo)
|
by BigNibs
Need help writing a password checker.
|
|
[3 replies] Last: I appreciate the information and advice you have shared. I will try to... (by Ethan69)
|
by impetus
get current quantity of rows of dynamic 2d array
|
|
[8 replies] Last: How can I get the quantity of rows with request? A less efficient app... (by coder777)
|
by bydrachen
About Raw Pointers and Linked Lists
|
|
[4 replies] Last: Peter87, jonnin, seeplus; thanks for your big help. I can't still unde... (by bydrachen)
|
by tiqowixo
Random String Selection From Library
|
|
[17 replies] Last: My adaptation of that working paper's simple toolkit proposal. Header... (by deleted account xyzzy)
|
by learner999
how to delete the context of 2D matrix
|
|
[4 replies] Last: You're welcome. Glad I could help! (by MikeyBoy)
|
by jaffe15
Lookup with using namespace
|
|
[2 replies] Last: Or perhaps the "nearest enclosing namespace" is really the global name... (by Peter87)
|
implementing the backpropagation algorithm |
|
[2 replies] Last: when I run the code I get an assertion error - in the backprop() met... (by seeplus)
|
by BigNibs
Worked more on my password checker but still need some help
|
|
[11 replies] Last: Based purely on the given code, then: #include <iostream> #include ... (by seeplus)
|
by BigNibs
Need help writing a password checker.
|
|
[12 replies] Last: [continued here https://cplusplus.com/forum/beginner/284960/ ] (by seeplus)
|
by rozick1
Renaming a template class to make it more specific
|
|
[2 replies] Last: template <size_t N> using buffer = std::array<uint8_t, N>; ... (by mbozzi)
|
by hassan236
random number
|
|
[6 replies] Last: Even if the 'divide an int by a double' didn't result in a rather nast... (by deleted account xyzzy)
|