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