by D0CHollywood
Problems with Copy Constructor - Homework Problem -
|
|
[7 replies] Last: @Keskiverto Thanks so much. If you didnt clarify that the destructor i... (by D0CHollywood)
|
by HunteroOo
My total does not calculate correctly
|
|
[4 replies] Last: if(GPA>=2) total +=1; (by closed account 48T7M4Gy)
|
Tic-Tac-Toe Engine Bug. |
|
[5 replies] Last: C++ evaluates && before || so for example this: if((X == 1 && X... (by dhayden)
|
This is what i came up with |
|
[5 replies] Last: you are right (by gregorydouglas89)
|
A problem with if else statements |
|
[2 replies] Last: Thanks! (by TheHippoCritic)
|
Logical Operators Comparing String if else |
|
[3 replies] Last: I also found that I was incorrectly comparing strings as if they wer... (by jlb)
|
my .exe doesnt work |
|
[1 reply] : You need to make sure to handle the file paths correctly. Relative pat... (by Peter87)
|
by kabbotta
Difference Between For Each and Index-based Loop
|
|
[2 replies] Last: Thanks. I think I get it now. I was only increasing i on some of the l... (by kabbotta)
|
by Deadlines
How to do Hexadecimal to Decimal
|
|
[8 replies] Last: I finally figured out how to convert hexadecimal numbers to decimals w... (by Deadlines)
|
help with while loops. |
|
[4 replies] Last: Is it fixed? Working fine on Xcode. What does the errors say? (by DarkHunter2765)
|
Lost In Program Out Of Options |
|
[5 replies] Last: And what about a struct? The only problem is you would have to, probab... (by Aim4Erudite)
|
by slaw94
Haveing trouble with getting a function to call.
|
|
[4 replies] Last: It should work like this. #include <iostream> using namespace std;... (by SamuelAdams)
|
by BadAssPanda
How to make and control grid (2d array)
|
|
[1 reply] : http://www.cplusplus.com/doc/tutorial/arrays/ (by CodeWriter)
|
by mrsteve
ASCII
|
|
[3 replies] Last: Could you describe the format of this file? And also provide the code ... (by Zhuge)
|
by Leo Alves
Shift bit operations - LFSR
|
|
[1 reply] : #include <iostream> #include <bitset> int main() { std::bitset<5... (by booradley60)
|
Beginning c++ through game programming code review |
|
[2 replies] Last: Line 95: srand() should only ever be called once during a program. C... (by AbstractionAnon)
|
problem with segmentation fault |
|
[3 replies] Last: my problem now is how should i put in the code for that. I don't kn... (by AbstractionAnon)
|
by jpanther
Best method for sorting a struct
|
|
[2 replies] Last: Thank you for that explanation. That really helped me to get a better ... (by jpanther)
|
by Polymetric
String Conversion Function Problem
|
|
[4 replies] Last: Alright thanks, this was kind of just some testing code I wrote while ... (by Polymetric)
|
Polymorphism (Virtual Functions) |
|
[1 reply] : Yes (assuming by subclass you meant derived class). The use of the key... (by shadowmouse)
|