by elevona
How do I clear the buffer?
|
|
[18 replies] Last: Probably the premiere woman in computer science, Rear Admiral (Lower ... (by closed account E0p9LyTq)
|
by vysero
Loop through vector
|
|
[3 replies] Last: Ah I see now, this was my fault, size() is correct. (by vysero)
|
by cash
vector insert function
|
|
[9 replies] Last: Iterator is more about making ++ polymorphic than about hiding the poi... (by keskiverto)
|
by Majeek
Improve Beginner Code
|
|
[5 replies] Last: Lets look at HiddenNumberGenerator. You want four unique digits, where... (by keskiverto)
|
by kyrresc
Shallow/deep copy
|
|
[11 replies] Last: Constructor constructs a new object. Assignment modifies existing obje... (by keskiverto)
|
by aab2020
Please help
|
|
[1 reply] : Read this -> https://www.learncpp.com/cpp-tutorial/93-overloading-the-... (by salem c)
|
by avaldivia
What's wrong with my code?
|
|
[4 replies] Last: So I did that but now instead of asking for Course #1 it just duplicat... (by avaldivia)
|
by elevona
grab first char of a string
|
|
[12 replies] Last: '\n' is not the null terminator, it is the newline/carriage return. ... (by closed account E0p9LyTq)
|
by Vetzo
strerror_s: unique_ptr and char array+delete
|
|
[3 replies] Last: Ah, thank you both. (by Vetzo)
|
by jjordan33
Beginner to class problem
|
|
[3 replies] Last: Is virtual something that should be used for classes in general? vi... (by AbstractionAnon)
|
by Majeek
"int" to "vector <char>"
|
|
[4 replies] Last: Lines 2 and 3 are creating a duplicate variable name. Oh well how d... (by AbstractionAnon)
|
by jefazo92
Trouble passing two digit hex values from .txt file into array
|
|
[9 replies] Last: I would do it as a vector and then extract the array from it if you NE... (by jonnin)
|
by jjordan33
reversing struct array's rows
|
|
[8 replies] Last: That's some sick code. Thank you. (by jjordan33)
|
by AL88
Why is this segfaulting?
|
|
[1 reply] : Maybe give your vector a size? vector<addressCard> spareVector(numbe... (by salem c)
|
by Chris26
Integer cin
|
|
[4 replies] Last: Oh, so 1 3 2 should result in a=1 and b=2. (by salem c)
|
by redfury
Assigning value to constant integer in Class
|
|
[5 replies] Last: Also if you're using modern C++ you could assign the value in the defi... (by jlb)
|
by JayGln
pragma or ifndef?
|
|
[11 replies] Last: Funny how these topics reappear so regularly. #pragma once was once... (by Duthomhas)
|
by chrispy232
Error binary operator << in creation of calendar
|
|
[1 reply] : Why don't you enclose your code with code-tags? Expect you that we cou... (by nuderobmonkey)
|
by salem c
Help Required
|
|
[4 replies] Last: I will if you can point to it. If i see it I will, but if you already... (by jonnin)
|
by AL88
How can I replace the existing vector?
|
|
[1 reply] : Use std::vector 's erase() or clear() methods before you start pu... (by closed account E0p9LyTq)
|