by MikeyBoy
Question about IDE
|
|
[9 replies] Last: looks like some forums are vulnerable to edits that would not have bee... (by jonnin)
|
by afedorov
Implement iterator
|
|
[10 replies] Last: for (auto i = v.begin(); i != v.end(); ) if (*i == 2) ... (by mbozzi)
|
by rnima
How to deallocate an array
|
|
[11 replies] Last: This is true. I rarely need these, and misspoke as to its usefulness... (by jonnin)
|
by rnima
How to allocate an array
|
|
[no replies]
|
by yhassan86
Grading code
|
|
[1 reply] : You need to do 2 things: 1) In future please use code tags - see <> i... (by againtry)
|
by ggwm
The data does not send over socket from client to the server
|
|
[1 reply] : code tags help <> on the side editor, it makes large code readable. ... (by jonnin)
|
by ohmyninja
Login systems for multiple users
|
|
[6 replies] Last: switches have fall through, which is a bug when you do not mean to do ... (by jonnin)
|
by Ganado
Thank you for solution
|
|
[2 replies] Last: Here's another starter: #include <iostream> #include <string> void ... (by againtry)
|
by yhassan86
Averaging grades with multiple courses
|
|
[7 replies] Last: It's an error to use floating-point numbers in this situation. Floati... (by mbozzi)
|
by highwayman
program => massive AST??
|
|
[3 replies] Last: Can you say clearer (by williamTi)
|
by tammey1052
trouble with Time concersion between US time zones to UTC then converting to military time
|
|
[1 reply] : while (seasonal == 's') { autoScalingStart = (autoScalingStart + ... (by Ganado)
|
by Nico
Connect to SQL server
|
|
[no replies]
|
Confused |
|
[3 replies] Last: Thank you!! Makes a lot of sense now. (by closed account yboiAqkS)
|
by Depressed
Need help accepting ordered pair of strings
|
|
[1 reply] : > static const int DEFAULT_VALUE = 0; Make this static const T DEFAULT... (by salem c)
|
playground as one-dimensional array |
|
[3 replies] Last: Thank you, jonnin. That's a nice trick you provided getting rid of the... (by nuderobmonkey)
|
by Depressed
Help with programmer defined exception classes
|
|
[1 reply] : Here's a start - your default (0,0) breaks the rule. (Keep in mind the... (by againtry)
|
by Depressed
LNK2019 / Undefined reference ERROR.
|
|
[11 replies] Last: Thank you guys a lot! Finally compiled :D (by Depressed)
|
by dbabo
invalid use of non-static member function
|
|
[5 replies] Last: the prototypes don't match, you can't pass it. #include <functional>... (by ne555)
|