0
1.1kviews
Consider the program given below, (i) Draw the flow graph. (ii) Determine the cyclomatic complexity. (iii) Arrive at all the independent paths.
written 24 months ago by | • modified 24 months ago |
void main
{
int i, j, k;
readln(i, j, k);
{
writeln("then when);
if(j<k)</p>
writeln ("j less then $\mathrm{k} ")$;
else writeln ( "not less then k ");
}
else writeln( "else Part");
}
ADD COMMENT
EDIT
1 Answer