by Godric
Automation
|
|
[no replies]
|
by mlholder
Stack error / Can't push and pop 1 item
|
|
[no replies]
|
by jeffwest26
finding the largest number. HELP!
|
|
[8 replies] Last: Technically, you would want to initialize maximum to the smallest val... (by wildblue)
|
by Fortunat
do-while problems
|
|
[3 replies] Last: Thanks for clarifying your question. To do what you want, you just nee... (by Stormboy)
|
by jf1963
char variable question
|
|
[4 replies] Last: i thought maybe there was a way to use the variable in the equation. t... (by jf1963)
|
Count newlines, blanks and tabs |
|
[4 replies] Last: Use unformatted input. #include <iostream> #include <cctype> int ma... (by JLBorges)
|
by dayan1
Product w/functions problems
|
|
[1 reply] : You never call your product function in main. In the "else" condition... (by wildblue)
|
by owenkmc
can someone find whats wrong here?
|
|
[4 replies] Last: This is the animals.dat file tiger dog racoon zebra aardvark hippopota... (by owenkmc)
|
by Mechennyy
Object undefined
|
|
[2 replies] Last: How do you get fireball to this file? You can't use variable defined... (by Mechennyy)
|
by LEHCAR95
checking if a number present in a file
|
|
[3 replies] Last: Instead of while (inFile) { in>>filenum; do this: wh... (by Chervil)
|
by rs14
Hey there, I am new here,need help
|
|
[no replies]
|
by DailyDoobie
Help problem with a program
|
|
[10 replies] Last: Thank you for the hint i am going to complete the program. This topic ... (by DailyDoobie)
|
by enemy
references type& identifier / type &identifier
|
|
[2 replies] Last: Thanks, firedraco, just wanted to be sure!!! (by enemy)
|
by Shadowtrixer
Calculator Errors
|
|
[1 reply] : You need to put braces around the contents of your if statements, othe... (by TwilightSpectre)
|
by Ncf
Vector subscript out of range error
|
|
[2 replies] Last: Thank you,now I that I changed to vector<int> subst; //an empty v... (by Ncf)
|
by dariusd7
Create an array of strings via cin or getline
|
|
[2 replies] Last: thank you..That worked.. (by dariusd7)
|
by football52
Bool type and exponents questions
|
|
[1 reply] : // if (areaVolume = "area") if ( areaVolume == "area" ) baseCube ^... (by JLBorges)
|
by XavPL50
Passing two parameters: one by const ref. and another by ref.
|
|
[1 reply] : Yes. Prefer 'reference to const T' over 'constant reference to T'. C... (by JLBorges)
|
by giblit
Boost multiprecision cpp_int
|
|
[12 replies] Last: Changed 4 days ago by johnmaddock Status changed from new to closed ... (by JLBorges)
|
by maxsmith0111
Ordered Linked list using classes
|
|
[1 reply] : struct Character{ Character *next; //¿do you have this? }; ... (by ne555)
|