by jad123xp
My object was not declared in this scope, even after assigning it inside a switch statement
|
|
[12 replies] Last: :) :) Ok. I didn't pay sufficient attention to L43. It was at the bott... (by seeplus)
|
by K9WG
Large Text File
|
|
[17 replies] Last: OK - After a lot of experimenting I have decided on deque to handle ... (by K9WG)
|
by ElusiveTau
What's the time complexity of .size() when implementation maintains count when items are inserted/deleted?
|
|
[4 replies] Last: [quote=Peter87]The time complexity of calling size() is constant ( O(1... (by ElusiveTau)
|
by a456df
How do you find a position of an element in a queue?
|
|
[6 replies] Last: Thank you all! I'm testing several suggestions. I appreciate your help... (by a456df)
|
by gabzz29
Bug at line 11 and 24
|
|
[2 replies] Last: thanks i forgot about that (by gabzz29)
|
by AlexCantor
Need help with C++ tuple values please
|
|
[11 replies] Last: > this decomposition feature is available in C++17 Ignore the warnin... (by JLBorges)
|
by Speedjohn
How do I write this code
|
|
[13 replies] Last: #include <iostream> #include <map> #include <boost/multiprecision/cpp... (by JLBorges)
|
by MHS1986
char array member is not what it is supposed to be.
|
|
[1 reply] : When posting code, please use code tags so that the code is readable! ... (by seeplus)
|
by Lmac
Add and Remove a student vectors
|
|
[7 replies] Last: Using a struct, then possibly as C++20: #include <iostream> #includ... (by seeplus)
|
by mutilenka
Variable remaining in memory after stack termination in a pointer returning function with a pointer argument
|
|
[9 replies] Last: Hadn't come across it before - but worth a read. :) (by seeplus)
|
by ElusiveTau
Why does std::set provide a .find() method that takes a reference to an item to be found?
|
|
[3 replies] Last: Finding out whether a value is present in a set is indeed a common ope... (by Peter87)
|
constructors |
|
[4 replies] Last: class is a c++ keyword that creates a TYPE. NOT an object, but a TYPE... (by jonnin)
|
by raijin011321
finding index of a number
|
|
[1 reply] : There are various issues with the code. Why use a switch() and then ha... (by seeplus)
|
What should I put in the main function ? |
|
[8 replies] Last: Many people prefer for(;;) , because it definitely has no condition... (by kigar64551)
|
How to move back to the main menu ? |
|
[4 replies] Last: Thank you very much ! (by NormalUser1234)
|
access variable outside for loop/function |
|
[3 replies] Last: thanks a lot. that was very helpful. (by cloudEndeavor)
|
by klebermo
How to read a pbm/pgm/ppm image from a file
|
|
[2 replies] Last: Write the following: ht tps://en.wikipedia.org/wiki/Netpbm [ b][ ... (by Duthomhas)
|
by rudiHammad
showing the arguments' name passed to a function
|
|
[3 replies] Last: While the designated initializers (which C has had for a while now and... (by Duthomhas)
|
by rozick1
Heuristic for A* algorithm
|
|
[1 reply] : If each node in the graph has an x and y coordinate then you could use... (by Peter87)
|
by avocado16
to calculate score for all round
|
|
[7 replies] Last: @avocado16, just saying "it doesn't work" is too little information. ... (by deleted account xyzzy)
|