by adam2016
pointers factorial
|
|
[9 replies] Last: The following makes a char array of size 1 initialized with the value ... (by tpb)
|
by AvengerLB
Need Help with GCD Program
|
|
[2 replies] Last: c++ already contains the gcd algorithm, you can just call it (does the... (by jonnin)
|
by Graindor
Receiving strings in C++ from Python (JSON)
|
|
[2 replies] Last: Thanks Repeater for the reply. Regarding your question, Yes, I'm send... (by Graindor)
|
by primem0ver
Use of templates in external libraries
|
|
[12 replies] Last: Correct. Template classes should all be in the header. As we've alre... (by MikeyBoy)
|
by volang
Sockets/Server security
|
|
[3 replies] Last: Great stuff here, thanks. (by mbozzi)
|
Which is better ? |
|
[3 replies] Last: Thanks, @jonnin I usually close this topic after a great answer like t... (by closed account DEhqDjzh)
|
by dimenhendrix
PROCESSING A LINKED LIST RECURSIVELY
|
|
[2 replies] Last: Use a for loop to iterate over a list. It makes the code much easier... (by dhayden)
|
by adam2016
GMP using big numbers
|
|
[5 replies] Last: thanks Jonnin, that makes sense,so is there any compiler flags I can ... (by adam2016)
|
by ToeMater
What are some recursive algorithms everyone should know
|
|
[5 replies] Last: filesystem traversal fractals (by lastchance)
|
by JM567
Opening file using user input
|
|
[11 replies] Last: Thank-you for posting your entire code. Now we can see that the locat... (by doug4)
|
by chrichri
fill buffer (1,2)
|
|
[20 replies] Last: I would add some logging to see the flow of the program and the values... (by Thomas1965)
|
by JpCoder
OpenWatcom and getline()
|
|
[3 replies] Last: Thank you for your suggestions. We end up giving a try to Dev-C++. (by JpCoder)
|
by Graindor
C++ Socket Programming sending structure
|
|
[3 replies] Last: The simpliest way to transmit the data is string using stringstream. S... (by coder777)
|
by les818
Do while Loop
|
|
[2 replies] Last: If you only want to do a do while Loop, it can look like this: do { ... (by LajosOnly)
|
by ad5xj
Dereference operator
|
|
[7 replies] Last: ...perhaps. But perhaps the question doesn’t have anything to do wi... (by Duthomhas)
|
by stav
Explanation of opengl32.dll ?
|
|
[1 reply] : Haven't used it in a while but I remember having to add 4 or so .lib f... (by jonnin)
|
by parallx
Alternative for getline()
|
|
[7 replies] Last: thanks all, I got it work as I wanted :) (by parallx)
|
by EMA833060
it keeps telling me to declare val but idk what im missing
|
|
[1 reply] : I don't know what this is: val seed=let val m=Date.minute(Date.fromT... (by helios)
|
by usingdeque
Reusing a deque
|
|
[1 reply] : std::deque<> allocates memory in chunks: As opposed to std::vector,... (by JLBorges)
|
by primem0ver
Error linking when inheriting generic/template class
|
|
[16 replies] Last: A static data member needs to be explicitly instantiated. The whole p... (by MikeyBoy)
|