by c4l
Least possible money needed for buying grain
|
|
[1 reply] : You have: bot = 0; // assign price to p , assuming that 0 < price if ... (by keskiverto)
|
by bob13bob
why isn't this rounding properly?
|
|
[4 replies] Last: ok, read some of it. From what I can understand numbers like .1 can't... (by bob13bob)
|
by megaland
Help with while loops (repetition structures)
|
|
[3 replies] Last: You would want a do-while loop. Not a while loop. Put all of this code... (by TarikNeaj)
|
by decoy98
Read only variable is not assignable
|
|
[2 replies] Last: @Tarik, I figured it was the const! Thanks :) (by decoy98)
|
by pacman169
String exercise
|
|
[1 reply] : http://linux.die.net/man/3/strdup #include <iostream> #include <str... (by shadowCODE)
|
by gingy
Is There An Equivalent to the Not Equal Operator for Switch Statements?
|
|
[4 replies] Last: If you wanted to be specific, you could use an if statement. For exam... (by closed account 2LzbRXSz)
|
by imanoob2
error C2059: syntax error : 'return'
|
|
[3 replies] Last: Glad it worked out :) (by TarikNeaj)
|
by subvanity
Problem with file data manipulation.
|
|
[15 replies] Last: for (int i = 0; i < 5; i++) as file can be variable length, use w... (by anup30)
|
by SCB3
need some help with an array
|
|
[11 replies] Last: thank you, its all displaying perfectly now :) (by SCB3)
|
by lxy5730984
how to use while loop
|
|
[2 replies] Last: You're welcome. (by TarikNeaj)
|
by nicolad76
best way to stream to file
|
|
[4 replies] Last: i did read your post carefully. what did you think i linked to? a bunc... (by Little Bobby Tables)
|
by Zach4531
Rock, Paper, Scissors switch statement
|
|
[3 replies] Last: http://www.cplusplus.com/articles/jEywvCM9/ (by TarikNeaj)
|
by Ganado
Non-virtual Inheritance overhead question
|
|
[2 replies] Last: Great thanks, that's what I assumed as far as speed goes, and it's eve... (by Ganado)
|
by Rob k
How to compile program in Emacs
|
|
[1 reply] : For anyone finding this thread, I have solved my problem, the problem ... (by Rob k)
|
by Fedeb
Store unkown size of input data
|
|
[6 replies] Last: To find lines of a file you could use std::getline. To find the numbe... (by megatron 0)
|
by Baaaarry
Project due need assistance
|
|
[1 reply] : #include <iostream> #include <cstdlib> // Declare constants and map... (by megatron 0)
|
Stack not displaying items |
|
[14 replies] Last: It is a way to easily get command line arguments that were specified w... (by AbstractionAnon)
|
by alexBB
.gch extension
|
|
[2 replies] Last: I am not sure they are empty, honestly, but when I open them with ged... (by alexBB)
|
by andybabe
Why in member function body I can define a obj of its own type?
|
|
[6 replies] Last: There is even simpler case than the OP's: struct foo { int bar() { ... (by keskiverto)
|
by oseri
POD members release moment in Destructor
|
|
[2 replies] Last: When an object is destroyed: 1) Your destructor body is run 2) Des... (by Disch)
|