by jhykima
Visual Studio
|
|
[4 replies] Last: Step by step tutorials here - from setting it up in Visual Studio to p... (by shawnlau)
|
by djselect24
If statement help.
|
|
[5 replies] Last: else if (stateArray != "texas" || stateArray != "Texas") That will... (by Ganado)
|
by TheToaster
Code::Blocks CRASH!!!
|
|
[5 replies] Last: I tried deleting default.conf, but now it says the compiler that was p... (by TheToaster)
|
by etrusks
my count_if() implementation doesnt work
|
|
[3 replies] Last: Ohh, thanks guys so much :) (by etrusks)
|
by jjwooyoung
get() is reading double digit as individual digits
|
|
[1 reply] : The get() function reads one character . If you want to read numbers... (by Peter87)
|
by tcanna
Geologic Time (enum)
|
|
[10 replies] Last: So, I finished it off and I used a random number generator so it can p... (by tcanna)
|
by tcanna
Battle ship, trouble compiling know where, not why
|
|
[6 replies] Last: Ok, so it works. Is there a way to label my columns as letters, I know... (by tcanna)
|
by jpanther
sorting arrays from top-down
|
|
[5 replies] Last: Thank you. I might try and do a new post so people don't get confused.... (by jpanther)
|
by Kenota
Writing code for Rock, Paper, Scissors game.
|
|
[1 reply] : Why main() at 84? I don't think main() can call itself or should call ... (by CodeWriter)
|
by ctaylor4874
Sorting two arrays (parallel) question.
|
|
[3 replies] Last: What happens if, in the second code you say works, you change, if (m... (by CodeWriter)
|
by kingkush
Copying an array into another array but in reverse
|
|
[4 replies] Last: I see that makes sense. I appreciate you helping me with all this! You... (by kingkush)
|
by agda
Why doesnt this program Work?
|
|
[3 replies] Last: #include <iostream> #include <cstdlib> // YOU NEED THIS #include <s... (by CodeWriter)
|
by kingkush
How do i let the user determine the size of an array?
|
|
[8 replies] Last: using std::cout and std::cin are more specific and clearer than u... (by vickoza)
|
by braiinsz
Hangman - trouble with strings
|
|
[1 reply] : strcmp compares strings (char*). And it looks like you are trying to p... (by MiiNiPaa)
|
by JORGEMAL
Questions about a pre-defined piece of code
|
|
[2 replies] Last: (1) is an constructor with an initialisation list (the preferred way t... (by mutexe)
|
by Arslan7041
Why does this program work?
|
|
[9 replies] Last: Assumes rather than knows. "C-string" is a convention that a char* p... (by keskiverto)
|
by shawnlau
Multidimesional vector constructor question
|
|
[9 replies] Last: in the second constructor in the post above, the parenthesis represen... (by MiiNiPaa)
|
Scope Handling Ideas |
|
[2 replies] Last: Thanks for the idea about stacks. I can't believe that I forgot about ... (by MaxterTheTurtle)
|
by shawnlau
Assigning iterator and integer in same statement
|
|
[2 replies] Last: You're right. You can only declare one variable in the for statement, ... (by shawnlau)
|
by Arslan7041
Size of char array decided by user input?
|
|
[15 replies] Last: 2. Just the string (using index-based instead or iterator-based access... (by andywestken)
|