Control Dependence
Segments or Instructions in a program may obtain control structures. Thus, dependency between the statements can also be in control structures. But the order of implemented in control structures is not familier before the run point. Therefore, control structures dependency between the instructions must be analyzed carefully. For instance, the successive iterations in the subsequent control structure are dependent on one another.
For ( i= 1; I<= n ; i++)
{
if (x[i - 1] == 0)
x[i] =0
else
}
x[i] = 1;