✪ Choose the correct option.
What is the output of the following program on GCC compiler?
#include
int main() {
static int a=5;
printf("%d",a--);
if(a)
main();
return 0;
}
What is the output of the following program on GCC compiler?
What is the output of the following program on GCC compiler?
#include
int main() {
static int a=5;
printf("%d",a--);
if(a)
main();
return 0;
}