If you attend class on
11/14,
you will have a chance to do this
assignment in-class for the
C34 grade
Draw the control-flow graph for the following function:
f: () -> void{
a:int;
a = 256;
while(true){
if (a > 500){
a = a++;
}
}
}