engineering recuitment GATE CSE 2023-24 Test Series Programming and Data Structure Programming in C Call By Value
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.