You may encounter situations, when a block of code needs to be executed multiple times. Loops are used in programming languages to repeat a specific block until some end condition is met. There are three loops in C programming: 1. for loop 2. while loop 3. do...while loop A while loop in C programming repeatedly executes a target statement as long as a given condition is true. The syntax of a while loop is: while(condition) { statement(s); } Here, statement(s) may be a single statement or a block of statements. The condition may be any expression, and if the condition is true (nonzero), codes inside the body of while loop is evaluated. The loop iterates while the condition is true. When the condition becomes false, the program control passes to the line immediately following the loop. The key point to note is that a while loop might not execute at all. When the condition is tested and the result is false...