Given the following programs (assume no syntax error), what…
Questions
Given the fоllоwing prоgrаms (аssume no syntаx error), what is displayed/printed? #include int main(void) { int z = -3; if (z > 0) z = z * 2; else if (z < 0); z = z + 5; else z = z - 1; if (z >2) z = z / 2; else z = z * 3; printf("z = %dn", z); return 0;}