by rezora
Problems with constructors and destructors
|
|
[no replies]
|
by Ch1156
Inheritance help
|
|
[4 replies] Last: In your case your elf class is not needed. You would be better with ad... (by MiiNiPaa)
|
by Fedelway
Help with functions and structures
|
|
[2 replies] Last: Thanks, i can't believe i'm so stupid :P Again, thank you, problem so... (by Fedelway)
|
by gabsacr
Can anyone help me with this?
|
|
[2 replies] Last: thanks! (by gabsacr)
|
by jdwright
Simulation - Running Total
|
|
[1 reply] : OK, I just realized my cout << totalCost; was in a very bad place.... (by jdwright)
|
by Naman29
Output C++
|
|
[2 replies] Last: thanks a lot :) appreciate it ..it helps (by Naman29)
|
by LuckyR
Misunderstanding the code I've written and it's generated output
|
|
[3 replies] Last: yup 0==0 -> true 1==0 -> false 2==0 -> false (by garylee)
|
by BlankSpace
Anything above
|
|
[2 replies] Last: Thank you so much! :D (by BlankSpace)
|
by aLx450
output a _getche() value using toupper
|
|
[4 replies] Last: Yes, you can. I see you already using conio.h. In future: do not do th... (by MiiNiPaa)
|
by BC300
Exception Program with Classes
|
|
[6 replies] Last: C++ also comes with a few standard exceptions (runtime_error, logic_er... (by JayhawkZombie)
|
by Putler
size_t vs size_type and ptrdiff_t vs difference_type
|
|
[1 reply] : size_type and difference_type are class member types which gives i... (by MiiNiPaa)
|
by DeathLeap
Compound interest function
|
|
[16 replies] Last: Ah well, as long as it works. I suspect you need to make sure all data... (by closed account 48T7M4Gy)
|
by anndurill
(C++) 4^20 problem
|
|
[6 replies] Last: Thank you very, much now I get it. I managed to get correct, uncut res... (by anndurill)
|
by mtmsl
Sequentially Outputting Elements Of An Array
|
|
[2 replies] Last: Yes, there seems to be a flaw in your algorithm. I believe your code f... (by squished18)
|
by EvE12
Arrow member selection
|
|
[2 replies] Last: thanks (by EvE12)
|
by vishnu123
what happens internally in the below function call
|
|
[3 replies] Last: As I said, that depends on the optimizations the compiler may perform.... (by helios)
|
by qetuo7oo
Displaying relevant values from an array
|
|
[1 reply] : Why are you checking ary but outputting values from intCount ?... (by MiiNiPaa)
|
Why isn't it giving the factorial properly. |
|
[1 reply] : 1) while (n>0, f<n) is equivalent to while (f<n) 2) you are multi... (by MiiNiPaa)
|
by vishnu123
why a macro defined as member function cant access the private data.
|
|
[2 replies] Last: Macros are expanded before compilation starts so they doesn't care abo... (by Peter87)
|
by Archimonday
Operators, Variables, Objects
|
|
[4 replies] Last: Well done. The point about putting it on the right line is the machin... (by closed account 48T7M4Gy)
|