What would be the output of the following 'C' statement?
void main()
{
int i=1, j=5;
while(i<j)
{
printf("value of i= %d", i);
i++;
}
}
Reveal answer
Fill a bubble to check yourself
What would be the output of the following 'C' statement?
void main()
{
int i=1, j=5;
while(i<j)
{
printf("value of i= %d", i);
i++;
}
}