by Okitraz1986
Trying to find a Mode using Parallel Arrays
|
|
[1 reply] : are you sure that mode is always assigned in that loop? could it fol... (by jonnin)
|
by Alex1993
What is the best way to check for input errors?
|
|
[2 replies] Last: goto is exceptionally rare in c++. It isn't generally needed, and is... (by jonnin)
|
by nicebrthlrn
structs and c style strings
|
|
[3 replies] Last: Forget the loops. 1 and 11 are not equal, but I suspect a typo or som... (by jonnin)
|
by bamboojack
Reading in a file word by word?
|
|
[1 reply] : while( file >> word ) { // process word... } (by integralfx)
|
Histogram Hysteria |
|
[2 replies] Last: Thanks Mantorr22. Simple fix :) Jared (by closed account 3vX4LyTq)
|
by jollyholly11
Help I need help writing my string out put
|
|
[6 replies] Last: I honestly have been trying to figure out this code by myself now for ... (by jollyholly11)
|
by bird1234
Link List Problem
|
|
[2 replies] Last: - use the ctor's to initialize objects when feasible; - const qualify ... (by gunnerfunner)
|
by Day Vide
Send Email
|
|
[2 replies] Last: Look into libcURL. There is SMTP support. https://curl.haxx.se/libc... (by mbozzi)
|
by reliquo
histogram for data
|
|
[1 reply] : you need a way to store what you have processed, how about an array? ... (by jonnin)
|
Alignment issues |
|
[no replies]
|
by Harigama
Storing numbers in a 2-D Array from a file with numbers and letters
|
|
[1 reply] : The while loop is pointless as you will have to iterate through all th... (by integralfx)
|
by JJpit
displaying the most and least occurrences of letters from a .txt file
|
|
[2 replies] Last: To think all my trouble and going over and over it was all due to a si... (by JJpit)
|
by simer
Something wrong in my code...
|
|
[5 replies] Last: No, new is used to allocate memory. pointerVariable = new type; It... (by joe864864)
|
by Claudius7
[Accelerated C++] - Function read_homework returns istream&. Why??
|
|
[3 replies] Last: > But mostly of all: why does this function returns "in"? What is the... (by Enoizat)
|
by yeera
How to convert c++ project
|
|
[2 replies] Last: If you want to copy the .exe as a stand-alone program, and use it on a... (by Chervil)
|
by alexgon9
Loops - Drawing a Tree
|
|
[1 reply] : See the "for loop" section here: http://www.cplusplus.com/doc/tutorial... (by dhayden)
|
by takaflaka
Checking for Characters in an Array
|
|
[1 reply] : You can reach the first character of std::string name through name , s... (by gunnerfunner)
|
by tayloras96
converting file to Rot13
|
|
[5 replies] Last: instead of cout << rot13 you need outfile << rot13 I think, then open ... (by jonnin)
|
by Turner1981
Menu-Driven Application
|
|
[11 replies] Last: Hello Turner1981, Once I cleaned up the extra closing "}" the program... (by Handy Andy)
|
by Jordan00
Calculating percentages question
|
|
[6 replies] Last: ah, ok if it runs that makes sense. #inf isnt an error. Its a "spec... (by jonnin)
|