by franqjos000
Logic time erros: Help fixing
|
|
[1 reply] : Edit your post and repaste your code between tags to preserve ... (by dutch)
|
by bzarr
error: ld returned 1 exit status
|
|
[1 reply] : Try checking the spelling of your function names! (by dutch)
|
by adabo
Conditionally erase object from a vector of objects.
|
|
[1 reply] : Read up on the erase method. It returns a new iterator. #include <i... (by dutch)
|
by bzarr
expected primary-expression before ‘]’
|
|
[3 replies] Last: This part char o; ifstream inFile; inFile.open("data121.txt")... (by dutch)
|
Modifying this code to read 8 inputs onto one single line? |
|
[2 replies] Last: #include <iostream> #include <sstream> #include <string> #include <v... (by CodingIsHard17)
|
Why can't I use mid here? |
|
[2 replies] Last: You can't add the iterators. Try vector<int>::iterator mid = vi.... (by dutch)
|
Not getting right values with distance formula |
|
[13 replies] Last: yeah, that * 1.0 was me thinking the issue was in the distance calcula... (by MediumSizedFoot)
|
C Hangman Program |
|
[2 replies] Last: thank you so much! (by mysiarobin1987)
|
Can someone help me understand this program involving vectors? |
|
[2 replies] Last: Okay I see. How can I make it read 8 inputs per line after converting ... (by CodingIsHard17)
|
by Zivojin
Getting Polymorphism for friend functions
|
|
[1 reply] : Your operator<< doesn't need to be a friend. #include <iostream> c... (by dutch)
|
by qutti12
for loop exponents
|
|
[4 replies] Last: it probably does look weird because honestly I don't know what I'm do... (by dhayden)
|
by senkovlad16
Permutations and combinations
|
|
[2 replies] Last: C++ arrays are accessed starting at index 0, not 1. So if there are 4... (by dhayden)
|
by SilentXwing
Need help understanding program
|
|
[1 reply] : The variable largestSoFar is meant to contain the largest value you'... (by dhayden)
|
by glasseater
Help with linked list
|
|
[2 replies] Last: Look at InsertBeginning(). This inserts after the node L. So that is... (by dhayden)
|
by nickname687
Calculator help
|
|
[11 replies] Last: @Ganado yes it correctly added. thankyou! (by nickname687)
|
by SilentXwing
Having trouble with event-controlled loop
|
|
[3 replies] Last: please remove your double post http://www.cplusplus.com/forum/beginner... (by ne555)
|
by longdoan
Need help with data processing
|
|
[1 reply] : std::ifstream input("filename"); std::string word; int number; while(... (by ne555)
|
generate random numbers |
|
[1 reply] : You say you want the numbers to be stored in a vector, but you don't h... (by Cheddar99)
|
Reading csv file |
|
[9 replies] Last: Hooray the result is great! Thanks all for your help! Good days! (by thinhphucvang)
|
by Majeek
Make a line of code that will execute std::cin
|
|
[2 replies] Last: Ty! (by Majeek)
|