Beginners - October 2022

Initialize 2D char array by passing addresses
 
Hello guys, can i am trying to initialize a 2D char array with this code below static char c...
[3 replies] Last: #include <iostream> int main() { static char c1, c2, c3, c4; ... (by againtry)
create iterator to map value?
 
Hi I am designing a class which will have a private member which is of type map<ID, Something>. I...
[8 replies] Last: Right, very nice! I treated it as if I knew nothing (apart from the m... (by jonnin)
Object oriented programming menu troubles
 
Hello all, i am in a programming 2 class and thought i was understanding quite well, but i am gettin...
[4 replies] Last: L74/75 - subchoice isn't zero based - it's one based. You need to subt... (by seeplus)
confusion on -> operator
 
I am implementing a linked list and I get an error in line 28 "cannot convert ‘node<int>’ to ‘...
[10 replies] Last: seems to work C++ is one of those languages that just because some ... (by seeplus)
Class Factory
 
A while back I made a class factory by doing the following: class A { }; A * classASpawner() { ...
[7 replies] Last: Sorry, took a break from the internet for a bit. The key use that I ... (by newbieg)
Get() taking in newline
 
Hello. I am creating a program to read in a maze and solve it but when I read in the maze file into ...
[4 replies] Last: Or even: #include <iostream> #include <fstream> #include <string> #... (by seeplus)
Exractin 3D matrix from 4D
 
Hello everyone, I will be very happy if you can help me. I have 4D matrix , which is called EC and...
[2 replies] Last: @mbozzi ,yes, exactly. That's what I want. You helped me :) Thank you ... (by learner999)
General Tree
 
How can I transform my number output into letters by implementing general tree A /\ B C D E F ...
[1 reply] : A /\ B C D E F G / \ \ \ /\ ... (by cplus2303)
"for" loop not running program multiple times
 
Write your question here. I need some help on my cpp code and "for" loops, when I try to run it wil...
[9 replies] Last: I agree. All what you said is true. However I wanted to be clear in or... (by Geckoo)
Need help writing a password checker.
 
so I have 2 files that have passwords, one is the passwords that Im checking and one is the password...
[3 replies] Last: I appreciate the information and advice you have shared. I will try to... (by Ethan69)
get current quantity of rows of dynamic 2d array
 
have 2d array int array_of_ints ; this array will be dynamically filled with data need get cu...
[8 replies] Last: How can I get the quantity of rows with request? A less efficient app... (by coder777)
About Raw Pointers and Linked Lists
 
Hi again. I'm studying the linked lists in C and C++. Here, I tried to copy C code into C++ code. B...
[4 replies] Last: Peter87, jonnin, seeplus; thanks for your big help. I can't still unde... (by bydrachen)
Random String Selection From Library
 
I would like to use "cout" to display a randomly selected string from a library. For my specific pro...
[17 replies] Last: My adaptation of that working paper's simple toolkit proposal. Header... (by George P)
how to delete the context of 2D matrix
 
Hello everyone, I have two functions. One, Function 1, produces tuple contains one double and one ...
[4 replies] Last: You're welcome. Glad I could help! (by MikeyBoy)
Lookup with using namespace
 
Hi, I was wondering why this prints "unqual" and not "qual" since I have "using namespace a" before...
[2 replies] Last: Or perhaps the "nearest enclosing namespace" is really the global name... (by Peter87)
implementing the backpropagation algorithm
 
I have written a basic linear algebra library and a MLP (I started to learn C++ a week ago). Now, wh...
[2 replies] Last: when I run the code I get an assertion error - in the backprop() met... (by seeplus)
Worked more on my password checker but still need some help
 
So I did some more work on this, and my logic is that each of my passwords I will check against the ...
[11 replies] Last: Based purely on the given code, then: #include <iostream> #include ... (by seeplus)
Need help writing a password checker.
 
so I have 2 files that have passwords, one is the passwords that Im checking and one is the password...
[12 replies] Last: [continued here https://cplusplus.com/forum/beginner/284960/ ] (by seeplus)
Renaming a template class to make it more specific
 
Hello I would like to rename a std::array<uint8_t, size_t> as Buffer<size_t> (i.e. the renamed ty...
[2 replies] Last: template <size_t N> using buffer = std::array<uint8_t, N>; ... (by mbozzi)
random number
 
why i get the same output when i compile and run the program? #include <iostream> #include <s...
[6 replies] Last: Even if the 'divide an int by a double' didn't result in a rather nast... (by George P)
October 2022 Pages: 12
  Archived months: [sep2022] [nov2022]

This is an archived page. To post a new message, go to the current page.