Please write down any assumptions or deductions you make, and show all your calculations / workings, completing the task within 10 minutes (guide time).
What initial values of a and c are required such that the final values of a and b are: a = 32, b = 4
int a,b,c;
a = ???
b = 0;
c = ???
for (b = 0; a < 12; b++)
{
a = (a + a) * c;
}
a =
c =
Calculations, working and assumptions: