{ } ( ) [ ] <> begin ... end
all parts of the statement on the same line functions nested in the else blocks functions nested in the if blocks if statements nested in the else blocks if statements nested in the if blocks
forces a new page on the printout causes the current block of code to be exited causes the current function to be exited causes the whole program to be exited take a break; have a Kit-kat
should not be used in structured programming is used to call a function is used to call a separate program is used to get user input is used to terminate execution of a program
is not a valid C statement is line number 42 in a program assigns 27 to z if w equals 42 assigns 27 to y if y greater than z assigns 27 to w if y greater than z
if q equals 8, p is assigned 27 if q equals 8, p is assigned 42 if negation of q equals 8, p is assigned 27 if logical not of q equals 8, p is assigned 27 if p equals 42, q is assigned 27 minus 8
loop goes round 9 times loop goes round 10 times loop goes round 11 times loop goes round 12 times loop never exits
executes loop body if n equals 10 executes loop body if n equals 11 executes loop body if n equals 12 executes loop body if n equals 13 all of the above
jumps to start of loop if n equals 8 jumps to start of loop if n equals 9 jumps to start of loop if n equals 10 jumps to start of loop if n equals 11 none of the above
if ... else switch for while do ... while
top