by WhiteWind
Awkward question about writing longer programs.
|
|
[3 replies] Last: Create the class'/structs within main and then pass them to other func... (by Lynx876)
|
by Ilhan
First C++ Attempt/Total Noob
|
|
[12 replies] Last: Yes, but it is often unclear from just that line whther the loop goes ... (by LB)
|
by NGambit
istream >> operator
|
|
[3 replies] Last: You're welcome! Happy coding (: (by Lynx876)
|
by tempneff
I have a weird line printing and cant find it
|
|
[2 replies] Last: Works fine for me too. VS Express 2005. (by cnoeval)
|
by tempneff
I have a weird line printing and cant find it
|
|
[2 replies] Last: Duplicate post: http://cplusplus.com/forum/beginner/61334/ (by cnoeval)
|
by yasar11732
What is the point of this kind of private data?
|
|
[8 replies] Last: The only way for Magikarp to become Gyarados is through evolution E... (by yasar11732)
|
by orangeapple
C++ Game Specification Help PLEASE
|
|
[2 replies] Last: Thanks very much you were of really great help my friend. Thanks again... (by orangeapple)
|
by yasar11732
How to stop overflowing here?
|
|
[4 replies] Last: The ^ operator is bitwise XOR, not exponet That would explain the... (by yasar11732)
|
by xintaris
help with passing the right parameter
|
|
[5 replies] Last: Post your code in code block. [ code][/code ] removing the leading an... (by clanmjc)
|
by lql44
what does the "final" mean?
|
|
[1 reply] : Try reading this: https://en.wikipedia.org/wiki/Final_%28Java%29 (by yasar11732)
|
by lql44
double MyValue = 0.02425D;
|
|
[2 replies] Last: Just leave out the D and it will be a double. (by Peter87)
|
by lql44
Length of Array
|
|
[4 replies] Last: [quote=Nahiyan]And sizeof is a preprocessor function, meaning it is re... (by Peter87)
|
by doc2142
Adding limits to user input
|
|
[no replies]
|
by lql44
Double.NEGATIVE_INFINITY
|
|
[1 reply] : If std::numeric_limits<double>::is_iec559 is true, then: std::nume... (by JLBorges)
|
by Jeremiah
Implementing ArrayList in C++
|
|
[11 replies] Last: Your header.. .h #if ndef _ARRAYLIST_H_ #define _ARRAYLIST_H_ #inclu... (by clanmjc)
|
by cplusx2
Q's on File Processing
|
|
[3 replies] Last: Use a vector containing structs? struct scores { string name; ... (by Lynx876)
|
by yasar11732
Help me understand this
|
|
[6 replies] Last: @clanmjc Ah, I see. Excellent, thanks for clarifying. (by MrHutch)
|
by lql44
function returning array
|
|
[6 replies] Last: I knew that, but I forgot. As I said, I am new to all this :) No wo... (by MrHutch)
|
by cpplover
is it possible to rotate an array more than one position?
|
|
[2 replies] Last: Moschops, works perfectly! Thanks so much. I believe I was missing one... (by cpplover)
|
by lql44
isnan in C++
|
|
[1 reply] : Ensure you're not dividing by zero. Otherwise, you're into the realms... (by Moschops)
|