by moot1
click the screen
|
|
[5 replies] Last: Yes. Check this: http://www.cplusplus.com/forum/lounge/65208/ In the ... (by S G H)
|
by mfried41
help with my tax function!
|
|
[1 reply] : Your using rate before assigning a value to it. It will contain rando... (by binarybob350)
|
New to C++ (<3 months of EXP) need help with RPG |
|
[18 replies] Last: in the console->run loop, do something like console->SetPositionText(... (by S G H)
|
by R N
Reading temperatures from file (Solved)
|
|
[11 replies] Last: Alright now this is my new code. #include <iostream> #include <fstre... (by R N)
|
by mkaynutty
Formatting output and Output text file issue
|
|
[9 replies] Last: mKay, since all of your averages are of fixed length ( nn.nn) then the... (by Incis B)
|
by DexterMorgan
Range based for or Boost foreach: can it be used with two containers?
|
|
[7 replies] Last: Here is some fun I just spent time with. The idea with a ranged for i... (by Duthomhas)
|
by ACE123
string if statement
|
|
[2 replies] Last: Thanks for that, it now works great. I thought I tried that, but maybe... (by ACE123)
|
by archangel95
How do you get input from a user as an object?
|
|
[2 replies] Last: Thank you! I will give that a try tonight (by archangel95)
|
by darryldh66
gross pay
|
|
[1 reply] : You just wrote it in words. How do you write it in code? Like so: d... (by Stewbond)
|
by darryldh66
The new guy
|
|
[2 replies] Last: giving someone the code is not really teaching them or helping expand ... (by ui uiho)
|
by seppel
x * y not equal to x.operator*(y) ?
|
|
[3 replies] Last: Thank you guys! (by seppel)
|
by peak144
I want to do C++ as a first
|
|
[8 replies] Last: Learning a programming language is only half the battle. If you want t... (by Taran Gadal)
|
by benbehr
Initializing a struct
|
|
[11 replies] Last: 1) I know the code is just an example and therefor not intended to ha... (by cire)
|
by Rampie12
Bubble sort two dimensional array
|
|
[4 replies] Last: You can do it in an understandable way, like that: Read the two-dimens... (by CosminNTG)
|
by Mrcerimo
my code has got some bugs and dont know how to repair!
|
|
[5 replies] Last: Specifies the maximum number of chars to consume if '\n' is not reache... (by cire)
|
by Crimzon
How do you append a file?
|
|
[3 replies] Last: When you open it for writing, be sure to use the app flag. http://w... (by Moschops)
|
how to save a specific variable |
|
[7 replies] Last: Try with: getline(cin,note); instead of cin>>note; ... (by S G H)
|
Returning a new object on the heap |
|
[5 replies] Last: @zuluisgrate: You might be confused by the "*this", which is an object... (by Gaminic)
|
by ettedo2000
need help with void function and pass by refrence
|
|
[4 replies] Last: As your are passing those variables by value in the functions (except ... (by SUH)
|
to check whether the double no is divisible by 100 or not. |
|
[3 replies] Last: Why not multiply by 10 (or however many decimal places you have time... (by NerdTastic)
|