by Robert360
declaring unknown amount of variables
|
|
[9 replies] Last: I help to understand how to declare variables for an unknown amount o... (by keskiverto)
|
by LmaverickD
Sort help
|
|
[4 replies] Last: Ganado thank you I fix all the problems! (by LmaverickD)
|
by ezekiel17
Can i have some help?
|
|
[2 replies] Last: mixing cin and getline can lead to trouble. Google that for how to fi... (by jonnin)
|
making a char print as to two digit hex |
|
[5 replies] Last: Thank you, for your time, if was very helpful. I had do some thinking,... (by closed account oivD8vqX)
|
by soulworld05
remove void?
|
|
[1 reply] : Wow nevermind, after few attempt I solved it. #include <iostream> ... (by soulworld05)
|
by Rhyzan
no suitable conversion function from "std::string" to "std::string*" exists
|
|
[4 replies] Last: Yeah, I'm seeing that it's an issue of I didn't read/understand the di... (by Rhyzan)
|
Istream get() null terminated wording |
|
[5 replies] Last: char str defines str as a char array of 256 chars. As it is not initi... (by seeplus)
|
by HelpMeBro
Setfill Command
|
|
[4 replies] Last: Yes like yours one. * * * * * * * * * * * * * * * * * * * * * * * * ... (by HelpMeBro)
|
by propvgvnda
Parsing and comparing argv
|
|
[4 replies] Last: for (int i = 0; i < argc; i++) { Small point, but as argv is the... (by seeplus)
|
by forfor
function not declared in this scope
|
|
[9 replies] Last: No prob. (by seeplus)
|
by Amnesiax
Do While Loop to Repeat Program
|
|
[1 reply] : The do...while loop goes around lines 9 - 27. You don't need i defined... (by seeplus)
|
by kmcfall
Nested while loop
|
|
[8 replies] Last: #include <iostream> #include <iomanip> using namespace std; int mai... (by seeplus)
|
by DonnaPin
manipulators - using ios::
|
|
[2 replies] Last: @DonnaPin The reason ios:: is not being used in the examples, if that ... (by againtry)
|
by DonnaPin
ostream write()
|
|
[3 replies] Last: Why not try it yourself? It won't compile if you don't cast it. ofstr... (by Ganado)
|
by james58
How many trees can they plant
|
|
[4 replies] Last: Thank you looks like that is what I needed .... again thank you. (by james58)
|
by leetson
Square root and while loop trouble.
|
|
[1 reply] : No idea why isdigit() or isalpha() would be of any use to you. You ap... (by lastchance)
|
by kmcfall
How to find squares of odd numbers in an interval
|
|
[2 replies] Last: #include <iostream> using namespace std; void odds( int a, int b ) {... (by lastchance)
|
by Shervan360
Pointer to Object in C++
|
|
[2 replies] Last: @helios Thank you and edited first post. (by Shervan360)
|
by Amnesiax
For Loop to Collect 5 grades
|
|
[2 replies] Last: Thank you for going into detail on what I did wrong. I ran my code wit... (by Amnesiax)
|
by Alex12361
Deleting objects in template class
|
|
[2 replies] Last: List<Student> *students = new List<Student>(); /* add random students... (by Alex12361)
|