Question: For the given C code below, indicate the values assigned to each of the variable p, q, r, and s: int p, q, r, s;
For the given C code below, indicate the values assigned to each of the variable p, q, r, and s:
int p, q, r, s;
int i = 4; int j = 5;
{
int i = 6;
p = i + j;
}
q = i + j;
{
Int j=7;
i = 8;
r = i + j;
}
s = i + j;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
