Devide integer in parts |
|
[7 replies] Last: Another way is to use localizations. Consider: #include <iostream> ... (by seeplus)
|
by OscarTrevino
How to read multiple text files in c++?
|
|
[1 reply] : #include <iostream> #include <fstream> #include <string> int main() ... (by JLBorges)
|
by junweinehc
Else If just doesn't work.
|
|
[3 replies] Last: Yes.... double equal sign, not single. Thank you! (by junweinehc)
|
by JUANDENT
How to create an optional for a type with no copy ctor?
|
|
[2 replies] Last: I am using VS 2019 version 16.8.2. The problem must lie in the Visua... (by JUANDENT)
|
by dman25
Output all IP addresses in network in specific range
|
|
[3 replies] Last: Scan, similar to 'nmap'? https://nmap.org/book/man.html The 'ipcalc'... (by keskiverto)
|
by Ocko91
cal
|
|
[5 replies] Last: @AbstractionAnon, The OP edited their post after our replies, the err... (by deleted account xyzzy)
|
by omartinez310
Help with pointers
|
|
[3 replies] Last: To display an address of type char* using cout, you need to cast the p... (by seeplus)
|
by Albinal
Pattern mountain (progg. funda)
|
|
[4 replies] Last: #include <iostream> using namespace std; int main() { int n {}; c... (by seeplus)
|
What Debuggers do you use? |
|
[15 replies] Last: "Debugging is twice as hard as writing the code in the first place. T... (by keskiverto)
|
by Frank5093
Need help with some numbers.
|
|
[4 replies] Last: thank you everyone for your hard work. :D (by Frank5093)
|
by tmontanez
How to create defined users
|
|
[2 replies] Last: You're misusing your vector. An object in a vector (account) shouldn'... (by AbstractionAnon)
|
How does recursion work while defining multidimensional template array? |
|
[6 replies] Last: It is much easier to do "whole-array" operations (the equivalent of Nu... (by lastchance)
|
How to create a multidimensional array dynamic to the number of dimensions? |
|
[3 replies] Last: https://www.boost.org/doc/libs/1_73_0/libs/multi_array/doc/user.html#s... (by againtry)
|
by onetwo123
Input to console
|
|
[1 reply] : For dealing with struct/class input/output, it's usually easier to cre... (by seeplus)
|
by SirEnder125
File editing help! (1,2,3)
|
|
[51 replies] Last: Come quickly Lord Jesus! Said the actress to the bishop.... (by againtry)
|
by Mitsuru
fast destruction of std::vector<std::pair<int, int> > (1,2)
|
|
[27 replies] Last: Finally, I could resolve a series of my problem relating to memory all... (by Mitsuru)
|
by Mitsuru
Memory location of return values of functions, relating to functional programming
|
|
[2 replies] Last: Dear mbozzi I am going to use functional programming techniques in t... (by Mitsuru)
|
by Michael65589
OOP communication protocol class
|
|
[5 replies] Last: yes, you understood it. Client server may not need that registration... (by jonnin)
|
Is a number prime |
|
[11 replies] Last: for (int i = 3; i * i <= a; i+=2) // <-- (by againtry)
|
by grooviqw
Getting the position of a element
|
|
[7 replies] Last: [quote=corepower]i solved the previous question That's stretching it ... (by lastchance)
|