C++C++11C++14C++17Code SnippetLearn C++

Quickly Learn To Sort Vectors With Parallel STL Algorithm In C++ On Windows

In C++, STL Standard Template Library has many algorithms for some operations like searching, counting, and manipulation of ranges and their elements. C++17 has a new feature that you can sort vectors with Parallel STL Algorithm. In C++ Builder, Vectors can be used and sorted by Parallel STL Algorithm as below. #include #include #include #include int _tmain(int argc, _TCHAR*…
Read more
C++C++11C++14C++17Language FeatureLearn C++

Tutorial: Learn To Copy Matrix As A Excel Clipboard In Modern C++

Clipboard also called the paste buffer, is a buffer that operating systems provide to copy things (texts, bitmaps, tables, etc.) for the short term and transfer within and between application programs. The clipboard is usually temporary and unnamed, and its contents reside in the computer’s memory. In C++ Builder there are good components to use Excel forms, excel supported Grid…
Read more
C++C++11C++14C++17Language FeatureLearn C++

Tutorial: Easily Learn To Draw Mandelbrot In C++ On Windows

In mathematics, Fractals are a self-similar subset of Euclidean space whose fractal dimensions strictly exceeds its topological dimension. So when you draw these functions in their topological height, fractals appear the same at different levels, as illustrated in successive magnifications of the Mandelbrot set. Mandelbrot set is a good example to see how fractals are changing in every x,y and…
Read more
C++C++11C++14C++17Code SnippetLearn C++

Learn To Use Powerful Lambda Expressions In C++ On Windows

Lambda Expressions are an expression that returns a function object, it comes with C++11 standards and used C++14, C++17, C++20 standards, it is well explained here. Lambda expressions are widely used in C++, C#, Groovy, Java, Python, Ruby languages too. The Greek letter Lambda (λ) refers to an anonymous function, it means chosen since it is equated with something nameless and expression…
Read more