Find out the output of the given program or error if any.
static int i=10;
int main()
{
i=25; // line 4
printf(%d,i);
return 0;
}
Reveal answer
Fill a bubble to check yourself
Find out the output of the given program or error if any.
static int i=10;
int main()
{
i=25; // line 4
printf(%d,i);
return 0;
}