by SJDub
Switch Case Problem
|
|
[3 replies] Last: what's causing the leftmost sets of > ? Something got it to add anot... (by icy1)
|
by Vivty
Problem with Iterators
|
|
[8 replies] Last: For example, you could declare a forwards and a backwards iterator out... (by icy1)
|
by piotrowskid
Help with functions,
|
|
[3 replies] Last: Don't need prototypes if you instead put main() at the end of the file... (by icy1)
|
by LSOCplus
fscanf issues
|
|
[2 replies] Last: There are many base-10 fractional numbers that can't be represented ex... (by helios)
|
by Snarkky
Modularizing code and Arrays.
|
|
[3 replies] Last: You could condense the output but doing so, while more modular, would ... (by jonnin)
|
by clmu
Problem Appending object to a Vector
|
|
[3 replies] Last: Thanks a LOT, I suppose it was ne555's suggestion that was the solutio... (by clmu)
|
Using Void Function to calculated highest, average, and lowest numbers of an array |
|
[2 replies] Last: Ah, so an issue with my bubble sort. Thank you SO much for your help!... (by juliabrushett)
|
by One Pea
Clear all values in an array
|
|
[2 replies] Last: Thank you. (by One Pea)
|
by boypetey17
Parallel arrays problem.
|
|
[4 replies] Last: Example implementation, though it goes a lil overboard w/ regex ;D . ... (by icy1)
|
by wtbe
[Java] BankBalance
|
|
[3 replies] Last: That's from the original code. The original program didn't use JOption... (by wtbe)
|
by binaary
validating my code
|
|
[9 replies] Last: You want to exit when selection == 5, so do this: do { ... sw... (by dhayden)
|
by Shibitto
How do you increment a number via input in multiple conditions?
|
|
[3 replies] Last: #include <iostream> #include <iomanip> using namespace std; int... (by wtbe)
|
by sciman777
How to sort a two dimensional array which is a part of a structure?
|
|
[12 replies] Last: Self-contained example showing my advice from last comment (part 6a) t... (by icy1)
|
File Content Switched to All CAPS |
|
[1 reply] : Change line 17 to char c; while ( inFS.get( c ) ) cout.put( to... (by lastchance)
|
by roselyn97
a problem with if.. else statement
|
|
[10 replies] Last: it worked.. thank you so much seriously (by roselyn97)
|
by redman008
struct members declared in base class that are used in derived class are "not declared in that scope"
|
|
[1 reply] : - indent your code - fix missing braces prefix every member access wi... (by ne555)
|
by ethelena
New Char[] Allocation Returning Array With Wrong Size
|
|
[2 replies] Last: src = new char[strlen(src) + 1]; Hello memory leak! You grab a new... (by closed account E0p9LyTq)
|
by More Coffee
Understanding reinterpret_cast?
|
|
[5 replies] Last: I see, I didn't spot that. I will take all of this on board and take... (by More Coffee)
|
by One Pea
Program crashes after 11th element is added to array
|
|
[5 replies] Last: If you absolutely must use an array: #include <iostream> int main() ... (by closed account E0p9LyTq)
|
by kinjal2209
Algorithm for generating a Sudoku puzzle
|
|
[8 replies] Last: The original post is also Sudoku... We are given part of the code and... (by Manga)
|