Question: 6. Trace the following code when a = 3 and b = 4 and show the output. (12 points) int p; for (p =
6. Trace the following code when a = 3 and b = 4 and show the output. (12 points) int p; for (p = 1; b > 0; --b) p pa; return p; 7. What is the value of i after the loop? Explain. (10 points) int i = 0; char s[] = "To be or not to be"; while (s[i] != '\0') ++i;
Step by Step Solution
There are 3 Steps involved in it
6 Trace the code when a three and b 4 Initial values p uninitialized garbage value ... View full answer
Get step-by-step solutions from verified subject matter experts
