Category:C: Difference between revisions

Content added Content deleted
Line 43: Line 43:
{
{


if (a == 3)
if (K == 3)
{
{
x = y;
X = Y;
}
}
y = z; //this is not part of the if statement and does not depend on whether a equals 3.
Y = Z; //this is not part of the if statement. It will execute even if K doesn't equal 3.


}</lang>
}</lang>