c++ function |
|
[5 replies] Last: #include <iostream> #include <string> #include <vector> #include <ss... (by seeplus)
|
pointer / array |
|
[8 replies] Last: It basically means that the address of the first position of the array... (by tahasheikh2k)
|
by janac
std::greater not working with sort
|
|
[3 replies] Last: L35 sort(my_vect.begin(), my_vect.end(), greater<MyClass> () ); ... (by seeplus)
|
by Volapiik
C- How to properly access and deallocate memory used by a pointer of another struct.
|
|
[9 replies] Last: They haven't taught us to use debuggers yet A debugger is not a pan... (by mbozzi)
|
by CodeChaser
Pointer beyond end of array
|
|
[3 replies] Last: That there is a well-defined 'address one beyond the end of an array' ... (by JLBorges)
|
by Mandavel
General questions and guidance from pros (1,2)
|
|
[28 replies] Last: That all makes great sense now. better not to make those blanket state... (by Mandavel)
|
by beethekid
Function is not incrementing correctly
|
|
[3 replies] Last: There's a couple. Possibly the easiest is to keep a vector of members ... (by seeplus)
|
Is there any way to clean this up? |
|
[8 replies] Last: or using iterators: #include <cctype> #include <iostream> #include <... (by seeplus)
|
by beethekid
No matching constructor for initialization error
|
|
[3 replies] Last: Why a std::vector of pointers? std::vector<Students> works just as ... (by deleted account xyzzy)
|
How to swim when jumping in the C++ deep end |
|
[7 replies] Last: @Duthomhas - Great information, thank you. @thmm - Fix bugs & add new ... (by ComputerCowboy)
|
by Kanyddyo
Menu option that prints the inserted inputs
|
|
[2 replies] Last: Perhaps something like: #include <iostream> #include <string> int ... (by seeplus)
|
by DinoGuy
program isn't catching words
|
|
[3 replies] Last: > This class strictly prohibits using strings, so arrays only There's ... (by salem c)
|
by Michael4733
GUI guessing card game
|
|
[1 reply] : The screenshot on Google drive looks like a WinForm application. One ... (by thmm)
|
by ansch
Confusing output of this code
|
|
[4 replies] Last: #include <iostream> int f3() { std::cout << " test3 "; return ... (by againtry)
|
by hdcpp64
c++ to c
|
|
[13 replies] Last: In practice, yes: std::numeric_limits<T>::is_iec559 is true on almos... (by JLBorges)
|
by Rakib771
Recursive operator overloading for std::vector
|
|
[6 replies] Last: @lastchance, Thanks a lot. Now I see where I was tripping. The problem... (by Rakib771)
|
by RuehrbbdiM
Questions about validating inputs
|
|
[1 reply] : Correct. Once stream extraction can't properly extract, it fails the s... (by seeplus)
|
by rooha88
For loop creating an odd number at the beginning
|
|
[8 replies] Last: You are getting that error because you are not compiling as C++11 or b... (by deleted account xyzzy)
|
by Volapiik
c - reversing an array of strings.
|
|
[2 replies] Last: jonnin - Yes that seems to fix my issue perfectly. I appreciate your a... (by Volapiik)
|
by Nick72c
Help with Heap and Pointers (1,2)
|
|
[20 replies] Last: According to some experts modern C++ is about expressing intent. If st... (by thmm)
|