by Grock3121
Declaring
|
|
[2 replies] Last: yeeeess, that makes sense, I was more or less piecing this together fr... (by Grock3121)
|
by Reckless29
Reading a Nested for loop.
|
|
[1 reply] : #include <iostream> int main(){ int i, j, k = 0; std::cout << "... (by helios)
|
by moonman239
Result of call to toLower(someChar) if someChar='#'
|
|
[3 replies] Last: @naraku9333: Thank you. Just to quote from the link: Return value ... (by moonman239)
|
by Antone333
Multiple definitions of
|
|
[5 replies] Last: Oh, I see. I didn't get that. I have fixed it now. Thank you very much... (by Antone333)
|
by Tonlee
Question about dynamic_cast in C++ Primer 5th
|
|
[2 replies] Last: Thank you again! XD (by Tonlee)
|
Attempting to reference a deleted function? |
|
[8 replies] Last: You cannot overload the assignment operator to make it work with const... (by cire)
|
Help with getting input from .DAT file, putting it into an array all within a function. |
|
[no replies]
|
by marcchmiel96
Knight's Tour Question
|
|
[no replies]
|
by zaidmashni
deceleration terminated and
|
|
[3 replies] Last: Lines 55-57: There is still no reason for the }{ here. Line 91: Yo... (by AbstractionAnon)
|
by ralfitul
testing prime numbers
|
|
[2 replies] Last: Thanks, that solved the problem ! (by ralfitul)
|
by adam2016
Object inheritance
|
|
[1 reply] : Line 34: twoObject is an instance of class one. printIt is a public ... (by AbstractionAnon)
|
by adam2016
do I have to include headerfiles and using namespace std in cpp or not
|
|
[1 reply] : You can do the whole thing in a single file if you like. Your questio... (by Moschops)
|
by soccerfan12
help reading from a text file.
|
|
[5 replies] Last: thomas it was a dumb mistake. when the program ran with would recreate... (by soccerfan12)
|
by Janaki123
Name sorting
|
|
[1 reply] : In sortSurnameFirst(...) / sortFirstNames(...): i++ must only appear... (by coder777)
|
by evy
To find max and minmum values from pointer
|
|
[4 replies] Last: Cool! You're welcome. Glad it worked :) (by MikeyBoy)
|
by EisenMad
Call a variable with local scope inside a method from main
|
|
[4 replies] Last: Some possibilities: - have the function return the value - make the v... (by MikeyBoy)
|
by ReXound
Input Validation for Case Switch statements
|
|
[1 reply] : Try this as a guide: http://stackoverflow.com/questions/2075898/good-... (by closed account 48T7M4Gy)
|
by panzerw
parrallel array difficulty
|
|
[1 reply] : You have to add the following statement in your loop(s); if(stu_age =... (by coder777)
|
by DoobDood
Review my code please :D
|
|
[1 reply] : Two things: 1. Avoid magic numbers: Instead of e.g. case 0 : //th... (by coder777)
|
by puglov3r101
How can I make the void functions into a value returning functions
|
|
[1 reply] : Take a quick look at this tutorial: http://www.cplusplus.com/doc/tuto... (by chicofeo)
|