C++C++11C++14C++17Learn C++

Tutorial: Learn To Print Mandelbrot In Text Form In C++

Inmathematics, fractalsare a self-similar subset ofEuclidean 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…
Read more
C++C++11C++14C++17Language FeatureLearn C++

Dev-C++ Tutorial: Easily Learn To Count Prime Numbers On Windows

Embarcadero Dev-C++ Embarcadero Dev-C++ is free, and is a fast, portable and simple C/C++ IDE for Windows. The free version is great for beginners. If you want to develop professionally it is highly recommended you start with C++ Builder CE version. Dev-C++ can be downloaded from Dev cpp or from Github. The original author of the software is Bloodshed Software.Prime numbers are interesting…
Read more
C++C++11C++14C++17ComponentsLanguage FeatureLearn C++

Learn About Working With 3D In Modern Windows C++ Development

In application development 3D Objects can be displayed with 2D projection methods by using 2D / 3D mathematical calculations . That may be hard and needs much coding to display them. You can use OpenGL and DirectX with their own 3D commands to display them. You can also use and port a 3D Engine SDK. Simply, In C++ Builder 3D Objects can be easily displayed in the Viewport3D component. You can…
Read more
C++C++11C++14C++17Language FeatureLearn C++

Learn To Develop Your Own Powerful Windows Media Player In C++ Builder

Media Players are good to play sounds or videos. You can easily create your own media player in C++ Builder. MediaPlayer (TMediaPlayer) component is very good to develop your media player application. You can use aTMediaPlayercomponent for easy access to media files.MediaPlayer (TMediaPlayer)is used with TMediaPlayerControl. Set MediaPlayer to link aTMediaPlayerto…
Read more