Day – 2/Part – 4 : Loops in C programming
A loop statement allows programmers to execute a statement or group of statements multiple times without repetition of code. In other hand, Loops are used to repeat a block of code until the specified condition is met. Why we need loops? If we need to print the table of 2, we can use multiple print…
