What will be the output of the following code snippet in C language?
main()
{
int j=0,i;
clrscr();
for(printf(nValue is not initialized here.);
j++;)
{
if(j>10) break;
else
{
i=j*2; printf(%d,i);
}
}
getch();
}
Reveal answer
Fill a bubble to check yourself