by Ramzi89
Recursion and counting/incrementing
|
|
[9 replies] Last: I can see whats going on but piecing the actual logic together is anot... (by Ramzi89)
|
int *myPointer = 0 (What's the point of this pointer?) |
|
[1 reply] : It's a way to initialize a pointer so that it doesn't contain junk (an... (by xish)
|
Moore's Voting Algorithm |
|
[no replies]
|
by Ramzi89
Abstract classes & Pure virtual functions
|
|
[6 replies] Last: Constructors cannot be virtual. Wouldn't hurt to try this stuff in a ... (by cire)
|
by zeitgaver
Possibly Data Type Problem
|
|
[5 replies] Last: My second code is the correct program. Its output is 6857. I guess I'... (by zeitgaver)
|
by epi975
Strange char duplication
|
|
[3 replies] Last: Wow thanks! It worked! It's amazing how such little things can have su... (by epi975)
|
by dredwerx
Baseball Stats program compiles with errors
|
|
[9 replies] Last: Okay well, I probably just need to finish reading this chapter I am in... (by dredwerx)
|
by musipc
Random generator
|
|
[1 reply] : Try solving it using two-dimensional arrays. It will be easier(or at l... (by MatthewRock)
|
by GoranGaming
Euler Project Problem #3 (1,2)
|
|
[23 replies] Last: but my program still has major flaws. if for example the user inputs... (by MatthewRock)
|
by ejuneau
invalid types 'char[int]' for array subscript
|
|
[5 replies] Last: Firstly this comparison is incorrect from the logical point of view. I... (by vlad from moscow)
|
by Zoo
Vector input
|
|
[4 replies] Last: >>L B Got it thanks! (by Zoo)
|
Is one variable in nested loop alright? |
|
[2 replies] Last: According to the C++ Standard A name introduced by a declaration in ... (by vlad from moscow)
|
by xenodude2
Using "cout" in an "int" function
|
|
[3 replies] Last: Personally, your example works too, but if you plan on NOT cout'ing th... (by S G H)
|
by mahta
Invalid Allocation Size
|
|
[6 replies] Last: Thank you very much! (by mahta)
|
Why not make all functions inline? |
|
[3 replies] Last: Thanks :D (by jasonrobertz357)
|
by DrZoidberg
Getting input without cin ?
|
|
[4 replies] Last: Thank you coder777 and Andy, solved my problem! (by DrZoidberg)
|
by Mushymon
Mushymon
|
|
[14 replies] Last: Here is the C# equivalent program for the C++ code above shown by me. ... (by vlad from moscow)
|
by hello1111
C++ string problem
|
|
[1 reply] : Line 36 leaves a newline in the input buffer, so your getline() reads ... (by Zhuge)
|
Variable increment issue |
|
[9 replies] Last: Earlier you showed the typedef typedef unsigned int u32; but in yo... (by shacktar)
|
by GoranGaming
auto Keyword
|
|
[2 replies] Last: It works now! Thanks a lot :) (by GoranGaming)
|