What Does Control Flow Graph (CFG) Mean?
In computer science, a control flow graph (CFG) is the graphical representation of control flow or computation during the execution of programs or applications. Control flow graphs are mostly used in static analysis as well as compiler applications, as they can accurately represent the flow inside of a program unit.
Techopedia Explains Control Flow Graph (CFG)
A control flow graph is process oriented and can show all the paths that can be traversed during a program execution. A control flow graph can also be considered as a directed graph in which edges portray control flow paths and the nodes portray basic blocks, which are straight line segments without any jumps or branching.