PPT Slide
Using a block statement:
// if x != y, store 0 in x and store y in z
if (y!=x)
{x= 0; z= y;}
or
// if x != y, store 0 in x and store y in z
if (y!=x) {
x= 0;
z= y;
}
Previous slide
Next slide
Back to first slide
View graphic version