If the while loop below is executed using initial values


If the while loop below is executed using initial values for iA and iB of 67 and 82 respectively (iA and iB are both integer variables), answer questions based on the loop.
while (iB > 3)
{
iB=iB/2; 
if(iB==10)
cout << "saddle up!";
iA=iA+3;
}
//please explain 

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: If the while loop below is executed using initial values
Reference No:- TGS096287

Expected delivery within 24 Hours