The output of the following execution of C program is ____.

#include
int get_into_IIT(int temp) {
static int GATE = 0;
while (temp) {
GATE+= temp & 1;
temp >>= 1;
}
return GATE;
}
int main() {
static int ary = 1;
int j = 0;
for (; j < 12; j++) {
ary = ary + get_into_IIT(j);
}
printf ("%d", ary);
}

Enter numerical value using the virtual keypad. Round off where necessary.

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation