Consider the function func shown below :
int func (int num)
{
int count = 2;
while (num)
{
   count ++;
    num>>=1;
}
return (count);
}
The value return by function (435) is 

Posted on by