by dhayden
TicTacToe and Magic Squares
|
|
[4 replies] Last: Lastchance and Dutch, those are nice solutions. Thanks. The magic squ... (by dhayden)
|
by Jleger91
Help with hexadecimal math (1,2)
|
|
[21 replies] Last: << and >> is the same as multiply/divide by 2? yes. lets take a... (by jonnin)
|
by reppilsein
Cross-platform CMAKE project for old VESA/SVGA DOS Graphics
|
|
[2 replies] Last: I want to port them to modern OS Very good learning experience, porti... (by deleted account xyzzy)
|
by TheToaster
Confused on Lock-Free Stack (Linked List) implementation
|
|
[15 replies] Last: In order for a use-after free No, it doesnt have to be used within t... (by TheToaster)
|
by jstechg
Migrate C ++ application from jsoncpp to rapidjson.
|
|
[2 replies] Last: Thanks. I have to study the operation of jsoncpp and rapidjson in two... (by jstechg)
|
List |
|
[3 replies] Last: If you need fast random-access you could use std::vector instead of st... (by Peter87)
|
by F8Code
Cout's don't appear after adding a loop
|
|
[3 replies] Last: Your score decoration loops are messy one-liners, hiding a bug. #inc... (by salem c)
|
by marhuum
Purge and preset over again a static variable
|
|
[1 reply] : I don't know what you think "purging" a variable is, but maybe this: ... (by dutch)
|
by Figopochka
intersection of two circular lists
|
|
[4 replies] Last: if the lists are massive, you need to make one of them easy to search ... (by jonnin)
|
by Argi
Instantiating derived class causes crash?
|
|
[5 replies] Last: Yep, I get it now guys. Honestly I never would have noticed that on my... (by Argi)
|
by frek
My vector "myVec"
|
|
[4 replies] Last: [quote=TheToaster]1.) Yes. Assuming of course that the class is defaul... (by MikeyBoy)
|
by Figopochka
How to do it?
|
|
[1 reply] : Break it down into tasks: 1) Create a "two-level dynamic array" of p... (by MikeyBoy)
|
Constructor Destructor |
|
[8 replies] Last: [code firstline=23] treap() { treap<int> my_tree = {1,2,3,4... (by MikeyBoy)
|
by julie2019
C++20: The Unspoken Features
|
|
[1 reply] : I had heard about most of them but interesting features nevertheless. ... (by Peter87)
|
by Napsternoobs
Track memory on heap (Garbage Collection)
|
|
[5 replies] Last: I personally think implementing garbage collection in C++ in counter p... (by malibor)
|
by frek
Copy assignment definition (1,2,3)
|
|
[50 replies] Last: Thanks to all so much. :) (by frek)
|
by hassanAman
QuickJS
|
|
[4 replies] Last: Right, I will check it out. Appreciate the help :) (by hassanAman)
|
by cody728
sorting with pair
|
|
[9 replies] Last: You can indeed sort descending by switching < to >. @andywestken is r... (by lastchance)
|
by marhuum
How do we have extern for a member of enum
|
|
[4 replies] Last: Any enum can be forward-declared when its underlying type is specifi... (by mbozzi)
|
by Hezigon
Size of Array of Vectors in for loop
|
|
[4 replies] Last: This should work: int charIs(char input) { std::vector<std::arra... (by malibor)
|