Which of the following statements are correct about the program?
#include
int main()
{
unsigned int num;
int c=0;
scanf("%u", #);
for(;num;num>>=1)
{
if(num & 1)
c++;
}
printf("%d", c);
return 0;
}
Answer: A
No answer description available for this question.