Consider the function func show below

int func(int num)
{
int count=0;
while(num)
{
count++;
num=1;
}
return(count);
}

The value returned by func(435) is?

Posted on by