by sturk
Not printing out correct values
|
|
[2 replies] Last: In push_back you write the value to the wrong location in the array an... (by Peter87)
|
by DdavidDLT
Need some quick help, would appreciate
|
|
[7 replies] Last: Since original data are too secret to be shared, let’s venture funny... (by Enoizat)
|
by adam2016
Compiler defines and reading the standard library code?
|
|
[5 replies] Last: [quote=adam2016]std::vector and other containers, they almost look cry... (by Cubbi)
|
by pkdir
Return enum with most occurrences
|
|
[1 reply] : Following the KISS principle I would copy the values into a std::map a... (by thmm)
|
by Zanza
Undeclared identifier in grading program
|
|
[3 replies] Last: This is your code after having removing all the unused declarations an... (by Enoizat)
|
by hbcpp
Simulated environment for performance
|
|
[1 reply] : About the move vs copy speed comparison have a look at this post on SO... (by thmm)
|
by Faizts
out put not working return value problem
|
|
[2 replies] Last: i just fix it not add output tag (by Faizts)
|
by stoneJax
queues
|
|
[2 replies] Last: That is correct. cust.transaction_start_time is equal to previous cust... (by stoneJax)
|
by sparki
C+ delete operator doesn't work properly
|
|
[1 reply] : The problem is on line 89. You make a shallow copy and both pointers p... (by thmm)
|
by DJL
Looping and order of operations help
|
|
[13 replies] Last: You can always make your own swap like this: double temp = start; s... (by dutch)
|
by alexko
Colon sign with case and enum
|
|
[6 replies] Last: https://www.learncpp.com/cpp-tutorial/53-switch-statements/ (by deleted account xyzzy)
|
by KittyIchigo1
How to skip over a space when my while loop is supposed to stop at a space.
|
|
[1 reply] : else if (c == '@') { while (!stack.empty() && stack.top() == ' '... (by dutch)
|
by flav32
Creating singly linked list
|
|
[5 replies] Last: Thank you! I understand the concept, the logic behind them. I could de... (by flav32)
|
Converting a input string (HH MM SS) to an int (HH:MM:SS) |
|
[6 replies] Last: You could also use regular expressions <regex> for this, but given tha... (by TheToaster)
|
by Dustin792
do while loop, invalid user inputs....
|
|
[3 replies] Last: @TheToaster, I knew i had to reset that and for whatever reason I was ... (by Dustin792)
|
by Freejay
C++ Joystick
|
|
[1 reply] : I guess you start here https://www.sfml-dev.org/documentation/2.5.1/cl... (by salem c)
|
Classes, objects, points |
|
[3 replies] Last: thank u @Handy_Andy i'll do (by closed account EwqDy60M)
|
by Bkjohnson
Using an array to manipulate Pi to specific decimal Place
|
|
[8 replies] Last: It sounds like you're expected to do floor(pi * 10^input) * 10^-input. (by helios)
|
by jtek679
How to implement classes
|
|
[5 replies] Last: Hello jtek679, In addition to what dutch has already said. When yo... (by Handy Andy)
|
by starhan
Cannot convert int to double
|
|
[5 replies] Last: Thank you so much!! Both of you are lifesavers! (by starhan)
|