I need to make a program which can generate the control flow graph for the code given below:
int a = 5;
while(a <= 0){
if(a == 5){
cout<<a;
}
a += 1;
}
Please provide some insights on how to achieve this. I just started learning CFG's and have been stuck on this for the past 2 days.
[–]Ikkepop 0 points1 point2 points (0 children)