control-flow graph

A control-flow graph is a visual representation of the flow of execution within a program, showing its different paths, decision points, and the order in which various statements and functions are executed. It helps in understanding and analyzing the control flow of a program, making it easier to identify potential errors and optimize code.

Requires login.