For Loop and While Loops in Pascal Programming – Lesson 7

In this article, we explore the for and while loops in Pascal programming. Loops make our lives easier and are great tools in programming when we have many repetitive processes to run. In this article, we will explore: What are the for and while loops used for? In Pascal programming, the for and while loops allow … Read more

Pascal Variables – Lesson 2

As with any other programming language, Pascal variables are meant to hold data of different types that are expected to change while the program is being run. The types of variables used in Pascal programs are char, string, integer, real and boolean. To initialize a variable, we write the variable name followed by a colon … Read more