Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

37
M: +2.00/-0.66

Consider the following C program:

#include

int r(){

static int num=7;

return num--;

}

int main(){

for (r();r();r())

printf(“%d”,r());

return 0;

}

Which one of the following values will be displayed on execution of the programs?

[GATE CS 2019]
A
B
C
D