Selection Sort using C language (with every step)

What is selection sorting The selection algorithm sorts an array by repeatedly finding the smallest element (considering increasing or ascending order) from the unsorted part and putting it at the beginning. The algorithm maintains two subarrays in a given group. Subarray that is already sorted. Remaining subarray that is unsorted. At each iteration of selection, the minimum value (with regard to rising order) is sorted from the unsorted subarray and moved to the sorted subframe....

April 27, 2019 · 2 min · Rahul Rajput

Installing C/C++ (GCC) compiler On Windows

Installing the C/C++ (GCC) Compiler Windows TLDR; In this blog post we are going to install GCC compiler in windows platform. If you just wanted to skip all the step and do it yourself here is the link GCC TDM In this Tutorial, we are going to look into the full process of installing one of the C or C++ compiler as GCC compiler to your Windows machine....

December 10, 2018 · 2 min · Rahul Rajput