C Program : GATE 2019 Consider the following C program: #include <stdio.h> 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? Download as PDF Related posts: C Program GATE 2018 -8 C Program GATE 2019-6 C Program GATE 2018 -7 C Program GATE 2018 -5 C Program GATE 2019 -4 C Program GATE 2019-2 C Program GATE 2019-1