What is the output of this program?
#includestdio.h
void main( )
{
int i;
for(i=1; i=5; i++)
{
if(i==3)
break;
printf(“%d”, i)
}
}

Posted on by