vector in C

How to implement a vector in C

In my previous article, I explained how to create a dynamic array in C. After reading the post, Many readers requested a guide on implementing a vector in C. A vector is essentially a dynamic array that stores a collection of elements same type in a contiguous memory. It has the ability to resize itself

How to implement a vector in C Read More »

batch file for loop

batch file for loop

Like other programing language batch script supports the looping. In this article, I will explain the batch file for the loop and describe some examples of how we can use the batch file for loop in our program. Batch File For Loop Syntax, FOR %%Var_Name in list do iteration_Code   Parameters for the batch script for loop

batch file for loop Read More »