by clankill3r
question about my deconstructor
|
|
[5 replies] Last: <offtop> Silvestar , you barbarian! Some peaople just want to keep th... (by JockX)
|
by wwcase
Not sure how to read this line
|
|
[1 reply] : for(const char*c = inputLetters.c_str();*c; ++c) // is the same as co... (by keskiverto)
|
by Sharan123
Q5.Problem
|
|
[7 replies] Last: Thank you :) (by Sharan123)
|
by Sharan123
Q3.Problem
|
|
[9 replies] Last: Thank you its clear now :) (by Sharan123)
|
by AGZZ21
Using Arrays on Wargame
|
|
[1 reply] : void splitArray may loop through all items in source array and deter... (by JockX)
|
by jdforlife
Number of Elements in an array of objects
|
|
[2 replies] Last: agree with the Zhuge (by nashge)
|
by canucksfan1
How to find the smallest number in array?
|
|
[5 replies] Last: It isn't obvious why you would be getting stack overflow. The error w... (by cire)
|
by Sharan123
guessing number
|
|
[8 replies] Last: Yes if its exactly 7 its still ok but it gives an average of 28 counts... (by Sharan123)
|
by jdforlife
array of objects
|
|
[7 replies] Last: No problem :). Just select this topic as Solved. (by tath)
|
by fahmankhan75
Void Function Error
|
|
[3 replies] Last: Can I not use it though? sure you can. similar to print_series1 : vo... (by coder777)
|
by FastDasher
Old C++ book - Newer C++ tutorials
|
|
[4 replies] Last: In the second example you can put the line: using namespace std; above... (by Scott7975)
|
by hilft
throw and catch help!
|
|
[1 reply] : You start with f(2), so i=2. On line 20 when you create X(i+1) you set... (by ats15)
|
by hilft
try and catch help.
|
|
[6 replies] Last: thank you so much for the supports, wow you guys are fast. I keep fail... (by hilft)
|
by pepstein
Program that changes numbers to day of year
|
|
[4 replies] Last: Yes, it did. Problem's solved now, thanks for the help (by pepstein)
|
by BlackBug
first programme :D
|
|
[7 replies] Last: really i like it , that make me think with different way than the othe... (by BlackBug)
|
by jdforlife
going up a menu - 'the BACK button'
|
|
[1 reply] : char x; //To validate the choices do { //User chooses every ci... (by Annatar)
|
by Explodey
Object Containment
|
|
[4 replies] Last: Cool, thanks again! (by Explodey)
|
by tep122
What is wrong with this? Can't get it run, there are no errors
|
|
[1 reply] : Lines 12 and 13: double gall; while(gall<-1) {//... You're using a ... (by xismn)
|
by pushkin
Tic-tac-toe
|
|
[4 replies] Last: There are easier ways of doing this, using a 2d array, using numbers (... (by CplusplusAcolyte)
|
if (x <= value <= y) |
|
[3 replies] Last: if ((x<=value)&&(value<=y)) { do something } (by alhajee)
|