python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Visual Studio is reporting an error, but still compiling the program and everything works as it should. Have I made a mistake in my code?
I have made a small header-only timer struct for testing the speed of functions. I made it purely out of curiosity because I am learning C++.
I have a function called "TimeTask" which has 2 ...
Big Mike
Votes: 0
Answers: 0
Compile-time generation of array using an interleaved formatter
I am trying to build a compile-time generated array of a certain type, based on a template parameter pack of some types. The array generation works just fine if the types are used directly. However, I...
Casper B. Hansen
Votes: 0
Answers: 1
A better variadic function then stdarg in C?
I looking to create a variadic function in C that allows to do something like this:
Send({1,2,3,4,5});
Send({4,5,2});
Send({1,1,1,1,1,1,1,1,1,1,1,1,1});
Note there is no length input and the array is...
epic
Votes: 0
Answers: 3
How to print any number or random access containers?
Let's assume I have N random access containers (std::vector and std::array for example) of different types, and that all containers have the same length. I want to write to write a function that print...
alessio lapolla
Votes: 0
Answers: 1