Consider the function

int func(int num) {

int count = 0;

while(num) {

count++;

num >>= 1;

}

return(count) ;

}

For func(443) the value returned is

1
9
2
8
3
0
4
10

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation