by johnhoffman
Does C++ round floats to the nearest int when casted into an int?
|
|
[5 replies] Last: The Palm Tree Magician is correct in that it truncates. However tru... (by closed account z05DSL3A)
|
by xintaris
help with accessing private member functions
|
|
[3 replies] Last: Thanks for the quick response I think I am on my way now. (by xintaris)
|
How to sum up a vector/array |
|
[9 replies] Last: Brilliant, that works if I get it to print out b Thanks for your h... (by HershelLayton)
|
by darnovo
Trouble with Simple Program - For School
|
|
[1 reply] : Firstly, you have a closing brace at the end of line 43, with no match... (by The Palm Tree Magician)
|
by ianmark
star's outpud
|
|
[1 reply] : We don't do people's homework for them, but if you take a stab at it a... (by The Palm Tree Magician)
|
by seeker1340
Help - Loop time?
|
|
[4 replies] Last: Also looks like you can just get rid of either f1 or d1. They both do ... (by ResidentBiscuit)
|
by Cplus rookie
Getline from a txt file to a 3d array??
|
|
[1 reply] : OK, first things first: Line 9: To declare an array, you need a ty... (by The Palm Tree Magician)
|
by rphillips2
error LNK2019: unresolved external symbol "void
|
|
[1 reply] : Wow, wall of text! Use code braces around code (the <> symbol in the ... (by The Palm Tree Magician)
|
by johnhoffman
Why does the set iterator not have get() as a function?
|
|
[2 replies] Last: Thank you! That makes sense. (by johnhoffman)
|
by johnhoffman
How can one get the maximum of a set?
|
|
[2 replies] Last: Thank you! Also, I figured out that the max() in the algorithm library... (by johnhoffman)
|
by oyoung
A question about pointer
|
|
[3 replies] Last: My copy of the book says int* en = nums + 100; Defines en as a point... (by Cubbi)
|
by jokerfwb
Passing a string literal to a constructor??
|
|
[4 replies] Last: shacktar the const char* worked perfectly. Thanks. Man points and th... (by jokerfwb)
|
by YBCO
Confused myself
|
|
[4 replies] Last: Thank you so much WhiteWind been a great help. Yeah im going to start... (by YBCO)
|
by taitape
Cout an array element's index number
|
|
[10 replies] Last: Nearly ;) It should be if (i == SIZE) i = SIZE+1; isn't necessary... (by Athar)
|
by Orangejuice
File I/O problem (1,2)
|
|
[21 replies] Last: Thanks for the solution L B. unfortunately after using: ofstream ou... (by Orangejuice)
|
by daniel2012
not able to print out statement
|
|
[5 replies] Last: It's a tab ;) (by LB)
|
by SpriteGhost
Understanding Return better!?
|
|
[2 replies] Last: also where is the return value held does the program allocate space f... (by Athar)
|
by maharris
problem with vectors
|
|
[1 reply] : in line 97 userMain.username is of type std::string and your vector wa... (by sparticus37)
|
by swp
reversed order linked list
|
|
[2 replies] Last: Yes. Keep a node* last; When the 1st node is created (when first==0) a... (by closed account D80DSL3A)
|
by Barkin
c++ create a program please somebody helpp..
|
|
[19 replies] Last: cin.clear(); cin.sync(); cin.ignore(unsigned(-1), '\n'); (by LB)
|