by SSDEEZ
Array of Linked Lists
|
|
[7 replies] Last: The code looks to be "over-engineered" -- as well as missing several c... (by deleted account xyzzy)
|
by frek
packaged_task and future
|
|
[2 replies] Last: Thank you. :) I don't know why I'd forgot to call join there! Both jo... (by frek)
|
by Cplusc
build a solution after cloning from github
|
|
[2 replies] Last: Thanks for your answer. After many try and errores I used Ubuntu and g... (by Cplusc)
|
C++ class inheritance, Visual Studio and modules |
|
[5 replies] Last: Add the default ctor and comment out the using statement in the modul... (by seeplus)
|
by quoiagrace
Rock, Paper, Scissors using enums and functions help!!
|
|
[3 replies] Last: Perhaps something like: #include <iostream> #include <random> #incl... (by seeplus)
|
by narada
trouble with boundary values for number guessing program
|
|
[2 replies] Last: Small point but if number_generator() was called multiple times (say i... (by seeplus)
|
How to allow the user to "roll the dice" x times and save those values into a 2D array |
|
[7 replies] Last: I needed to save the output so that I could plug it into a separate fu... (by NopeNoRoboHere)
|
by frek
Meta Functions
|
|
[16 replies] Last: A metaprogram is just a program whose input or output is another compu... (by mbozzi)
|
by frek
Condition(al) variable
|
|
[11 replies] Last: If by any coincidence, the operating system decides to give the worke... (by helios)
|
by gedinfo
JSonCpp - create a JSON file in C++
|
|
[3 replies] Last: nlohmann's json library can be used as a single #include (json.hpp). h... (by Ganado)
|
C++20, std::format, address of variables and Visual Studio (1,2) |
|
[25 replies] Last: Yes, I know. That is the sole reference I can find, online. (And I t... (by deleted account xyzzy)
|
by DeezyM89
Why is my code reading the last Line Twice
|
|
[4 replies] Last: If you're been told to use .good() within a loop (bad idea), then you ... (by seeplus)
|
cassert and templates |
|
[2 replies] Last: assert is a function-like macro. Macros are expanded during the prepro... (by Peter87)
|
by SSDEEZ
fully iterating before termination
|
|
[11 replies] Last: Take a look at the any_suit_contains_full_run and amend it for your pu... (by Ganado)
|
by Cplusc
Mpi 32 and 64 platform.
|
|
[9 replies] Last: If you are using Visual Studio then you are presumably using the cl.ex... (by lastchance)
|
by zephina21
Activity using switch case
|
|
[11 replies] Last: #include <iostream> #include <initializer_list> int main() { doubl... (by seeplus)
|
by Adam87
Casting a structure to another
|
|
[8 replies] Last: My understanding is that you want to reinterpret a chunk of memory th... (by Adam87)
|
by BJKY0712
Is it possible to not define the size of a 2d array at the beginning?
|
|
[11 replies] Last: #include <iostream> #include <fstream> #include <string> #include <al... (by lastchance)
|
by frek
Bits manipulation
|
|
[17 replies] Last: @Ganado Cool. Thanks for that :+) ThingsLearnt++; (by TheIdeasMan)
|
C++20 - import vs. #include |
|
[11 replies] Last: I must modify somewhat my earlier expressed opinion about the "Beginni... (by deleted account xyzzy)
|