The output of executing the following C program is _______________ .
#include stdio.h
int total(int v) {
static int count = 0;
while(v) {
count += v&1;
v RightShift= 1;
}
return count;
}
void main() {
static int x=0;
int i=5;
for(; i GreaterThan 0; i--) {
x = x + total(i);
}
printf("%d\n", x);
}