{
float x=1.1;
while(x==1.1)
{
printf("%f\n",x);
x=x-0.1;
}
return 0;
}
↧
what is o/p and explain why like that for below c program
↧
{
float x=1.1;
while(x==1.1)
{
printf("%f\n",x);
x=x-0.1;
}
return 0;
}