Chapter 4: Problem 21
What is a flag variable?
Short Answer
Expert verified
Answer: A flag variable is a programming concept that indicates if a certain condition exists or not, usually holding a boolean value (true or false). It is useful to control the flow of a program, as it can be used in decision-making constructs like if statements and loops to represent the state of a specific condition. By declaring a flag variable, assigning an initial value, and updating the value as needed, it allows the program to manage the status of a condition or control its flow more efficiently.