int x=7, y=3, z=170; /* variables x, y, z */
main () { /* main program */
y = 4;
x = 528 - y * z;
if (x < 40) {
y = x - 34;
}
else {
y = x / y + 4;
z = 23;
}
printf ( "%d %d %d \n", x, y, z) /* print x, y, z */
}
Check your program by compiling and executing it with Titokone.
[2 htp] Using the ttk-91 symbolic assembly languge, write a program, that
Check your program by compiling and executing it with Titokone.