by bobcat854
Sum of n Even numbers
|
|
[2 replies] Last: @Ganado, yes I was trying to multiply that was my mistake and didn't n... (by bobcat854)
|
by MILLER XYL
Why can't I use list insted of array?
|
|
[14 replies] Last: It's clear now. Thanks to you all! (by MILLER XYL)
|
by Vijay0753
Valid Palindrome Error
|
|
[2 replies] Last: This seems to be equivalent to what you wrote, and I don't get any err... (by dutch)
|
by rozick1
When designing an interface, should typedef be avoided?
|
|
[4 replies] Last: Isn't using the new typedef? Yes - it's better than typedef beca... (by mbozzi)
|
by Depressed
Calendar program with array help C++
|
|
[11 replies] Last: const string day_name { "Monday", "Tuesday", "Wednesday", "Thur... (by againtry)
|
How to go about finding user input (integers) within a text file? |
|
[1 reply] : There are a lot of ways, but life can be made easier if you have a par... (by Duthomhas)
|
****Extract Word Starting With Vowels From A String**** |
|
[3 replies] Last: #include <iostream> #include <sstream> #include <string> #include <al... (by lastchance)
|
by Darius00
Problems to change macro through compiler (solved) and segmentation fault (solved)
|
|
[9 replies] Last: @Darius00, There is a huge amount to "fix" in your code. First of al... (by lastchance)
|
by brim4
How to put information from file into an arraya and compare two arrays?
|
|
[2 replies] Last: an array of strings: string sarr ; int i = 0; while (infile >> sarr[... (by jonnin)
|
by Bopaki
Why am I getting error:Undefined reference to operator<<
|
|
[4 replies] Last: Line 14: Your output operator is private. Line 332,334,339: You're ... (by AbstractionAnon)
|
by victor1599
Moving array of characters
|
|
[13 replies] Last: Yes (by zapshe)
|
by Vijay0753
Add Two Numbers
|
|
[1 reply] : How else do i create a new linked list? Use a constructor that exist... (by dutch)
|
by jrbobdobbs83
Valgrind- memory errors and default destructors (1,2)
|
|
[20 replies] Last: Hmm. I have no idea if you had a reason to avoid updates. I routinel... (by jrbobdobbs83)
|
by Bopaki
I didn't know what this error means
|
|
[4 replies] Last: Lines 6-7: Your operators are private. That's going to make them imp... (by AbstractionAnon)
|
by olychichi
understanding class pointers
|
|
[2 replies] Last: Pointers are used primarily in two situations: 1) When you want to ... (by AbstractionAnon)
|
Alternative to auto |
|
[8 replies] Last: I can definitely agree that this sort of thing is a travesty: auto x... (by Repeater)
|
by aardalde
Declaring a 2D array constant
|
|
[1 reply] : const and constexpr mean the data will not change. eg const int x ... (by jonnin)
|
by darego
Binary search tree print() only printing out first 2 nodes
|
|
[9 replies] Last: Thanks a lot dutch. Works perfect now (by darego)
|
arguments that are pair<int, int> |
|
[4 replies] Last: Still not entirely sure what you're up to, so I can't say that this is... (by dutch)
|
by Frank5093
Sorting Letters and Words
|
|
[6 replies] Last: Thank you so much, this will teach me how to work with future projects... (by Frank5093)
|