โช Choose the correct option.
What will be the output of the below C program.
#include
int main()
{
static int i=5;
if(--i){
main();
printf("%d ",i);
}
return 0;
}
#include
int main()
{
static int i=5;
if(--i){
main();
printf("%d ",i);
}
return 0;
}