C++C++11C++14C++17DatabaseLanguage FeatureLearn C++

Learn To Use Powerful Cryptographic Hash Functions In Modern C++ On Windows (SHA, SHA2, MD5, BobJenkins)

Cryptographic Hash Functionsare a one-way algorithm that takes an input of any size and produces the same size output. The cryptographic hash functions are a more secure version of the hash functions. It is one-way in that there is information loss โ€” you canโ€™t easily go from the output to the input again. The cryptographic hash is a more secure version of the hash function. It is mostโ€ฆ
Read more
C++C++11C++14C++17Language FeatureLearn C++

Quickly Learn To Count Prime Numbers In GNU C++ On Windows

GNU C/C++ Compiler (gcc , g++) GNU GCC is another powerful C/C++ compiler originally written as the compiler for theUnix, Linux and GNU operating system. The GNU system was developed to be 100% free software, and it is efficient with both 32-bit and 64-bit operations. This compiler can be used on Windows using MinGW or CygWin Linux Simulators. Compiled executable files need a small dll toโ€ฆ
Read more
C++C++11C++14C++17Language FeatureLearn C++

Learn To Quickly Create Specific 3D Objects In Modern C++ Applications For Windows

3D Objects are like wrapped papers in 3D form. They consist of points which shape a polygon. It’s very rare to use anything other than triangles, and more complex shapes are decomposed into multiple triangles. Our 3D objects are stored with these points, data that which points are shaping polygons. In modern application development most of these objects are generated by a 3D Designerโ€ฆ
Read more
C++C++11C++14C++17ComponentsLanguage FeatureLearn C++

Quick Look At Basic Color Components On Windows In C++ Builder (QuickLook Part 6)

This article is about Color Components which is used to select or display Colors. If you are new to ARGB color please refer to this article about Colors in Modern C++ ColorButton (TColorButton)It is a standard button that displays a color. It can be used to pop up color picker window then backs with selected color. May be to show foreground background colors, etc. It can be used withโ€ฆ
Read more