Question: Question 33 void display(int x) { x++; printf(The value of x is %i. , x); return; } int main() { int x = 5; display(x);







Question 33 void display(int x) { x++; printf("The value of x is "%i. ", x); return; } int main() { int x = 5; display(x); printf("The value of x is "%i. ", x); return 0; } if the above code were executed what would be displa ed. O The value of x is 6. The value of x is S. > Question 31 int x=0, y=5, z=10; if(x>0 && y == 5 && z >= 10) x = x + y + z; printf("%i",x); if the above code were executed what would be displayed 0 15 10 05 O Ravioli Pizza Question 19 3 pts A do-while loop is useful when we want that the statements within the loop must be executed: O Only once O At least once O More than once None of the above Question 20 3 ts double myVariable 13.0, myotherVariable = 8.0; if( myVariable = 4.0) { printf ("Ravioli "); printf("Linguini "); printf("Pizza "); Question 16 pls = 0; int x = 3, y = 5, counter while (counter 4 | d >= 2) O True False Question 16
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
