โช Choose the correct option.
What will be output of the following “c” code?
#include
void main()
{
static int var = 5;
printf("%d ",var--);
if(var)
main();
}
#include
void main()
{
static int var = 5;
printf("%d ",var--);
if(var)
main();
}