by vasncode
Syntax error that I cannot find.
|
|
[4 replies] Last: vasncode, you should remove line 284 (77 in newbieg's post). It's enti... (by Ganado)
|
by lilthanos
I need some explaining.
|
|
[5 replies] Last: #include <iostream> #include <fstream> #include <algorithm> using nam... (by lastchance)
|
by PopSmoke
Implementing a break in my If-else statements
|
|
[14 replies] Last: @seeplus you're correct. Those numbers I used correlate to a TDB modul... (by PopSmoke)
|
by BigNibs
I cannot debug my program
|
|
[4 replies] Last: the instructions tell me to use it - can we get a full copy of the ... (by newbieg)
|
by ahmed0x
Translate code into pseudo code
|
|
[5 replies] Last: Slightly simplified code: #include <iostream> #include <iomanip> #i... (by seeplus)
|
by nandikaka
I don't understand why this function doesn't work.
|
|
[6 replies] Last: Ok, thank you so much!!! Now I understand!!! I gave it as an argument ... (by nandikaka)
|
by lostdog
location of known substring between 2 points in a string
|
|
[7 replies] Last: The problem with std::string::substr() is that it creates a copy. Us... (by Duthomhas)
|
by CodeChaser
Variadic template functions
|
|
[11 replies] Last: Thanks. void Sum(Res&) {} And although this overloaded Sum does not... (by CodeChaser)
|
by lostdog
read comport
|
|
[9 replies] Last: BTW, “comport” is a verb meaning “to be in agreement with ”: ... (by Duthomhas)
|
by jordan mpho
function lsqfit() that performs a least-squares fit
|
|
[3 replies] Last: @jordan Combining the two previous posts with the following should giv... (by againtry)
|
by numba1sonman
Custom string class problems
|
|
[14 replies] Last: Rather than having Mystring convert to const char* implicitly I think ... (by Peter87)
|
by mermaidly
Caeser Cipher
|
|
[2 replies] Last: char represents the type for just 1 character - not a sentence. Have ... (by seeplus)
|
by LakySimi1
Disadvantages of writing full code in header file and not use ".cpp" files?
|
|
[19 replies] Last: If you have only one source file that includes something, then you ess... (by keskiverto)
|
by ssspppa
Add user-input to array until user inputs 0
|
|
[5 replies] Last: Thanks to the both of you -- I'm learning a lot! :) I'll mark this th... (by ssspppa)
|
by numba1sonman
How to share program to run for a friend?
|
|
[3 replies] Last: be sure to compile it in release mode before you give it out. This he... (by jonnin)
|
by Codeman23
swirly parentheses problems
|
|
[2 replies] Last: Yep, It is working now, thank you for all of your help (by Codeman23)
|
reading params from list in string |
|
[5 replies] Last: Yes - if the format of the reply string changes, then that extraction ... (by seeplus)
|
by sp7cpp
Can we pass pointer to function contains const reference variable
|
|
[2 replies] Last: A pointer is not the same thing as a reference. The problem is not c... (by Peter87)
|
by Codeman23
even if(){}code problems
|
|
[7 replies] Last: [quote=Codeman23]I'm very bad at code There is a free online tutorial... (by deleted account xyzzy)
|
by Shervan360
Can I use malloc without sizeof?
|
|
[4 replies] Last: Be aware that the size of basic types like int or long is not fi... (by kigar64551)
|