#include<conio.h>
#include<stdio.h>
int main()
{ float x=1.1;
while(x==1.1)
{
printf("%f\n",x);
x=x-0.1;
}
getch();
return 0;
}
What I have tried:
I my opinion the output should be 1.1 but their is NO OUTPUT why????????
when i executed this code on DEV C++ ......